Website opening horizontal margin how to solve [closed]

-1

I'm making a website that is almost ready and it's opening horizontal margin,

I've already used

body{ 
    background:#CCCCCC;
    overflow-x:hidden;
}

But it did not work, is there any way to open the border without horizontal content?

    
asked by anonymous 10.06.2015 / 18:35

1 answer

1

I did not understand the question very well but I suspect that your problem will be solved with the following CSS:

body {
    margin:0;
}
    
10.06.2015 / 18:50