Home > Blockchain >  How to control it's size?
How to control it's size?

Time:01-23

When I put a card it makes space and make the website looks annoying how I can remove this space that I colored it with redenter image description here

CodePudding user response:

Without a code sample, it can be hard to tell; however, you can set the body tag's width to maximize the size to the entire width of the screen width by using the following.

body {
    width: 100%
    margin: 0 auto;
}

CodePudding user response:

I think that your problem is to hide horizontal scroll-bar

  •  Tags:  
  • Related