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?
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?
I did not understand the question very well but I suspect that your problem will be solved with the following CSS:
body {
margin:0;
}