0
Why is the nav background ihavimg a space between the screen size , like I want to it to the school
2 ответов
+ 3
Write this in CSS before body
*{
padding:0px;
margin :0px;
}
+ 1
It's enough to write:
body { margin:0; }
this set only the default body margin to zero, while * in Emmanuel Ezoba answer select and apply zero margin and padding to all elements of the page ^^