0
How to delete the white spacing before the header of a website? PLEASE HELP!
What am I doing wrong? I have tried everything. I went to the CSS course, I tried to set the margin to 0 in the html tag, body tag, I tryed padding... Nothing works. PLEASE HELP!! https://code.sololearn.com/WF0oBhmrLFUn/?ref=app
3 odpowiedzi
+ 2
Try this:
* { margin:0; padding:0; box-sizing:border-box; }
+ 1
Many tags have a default style like h1.
You can overwrite it.
h1 {
margin:0;
}
0
Thank you both it worked.