How to delete the white spacing before the header of a website? PLEASE HELP! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

1st Nov 2021, 10:20 AM
Lebi
3 Answers
+ 2
Try this: * { margin:0; padding:0; box-sizing:border-box; }
1st Nov 2021, 10:31 AM
Viktor Karpov
Viktor Karpov - avatar
+ 1
Many tags have a default style like h1. You can overwrite it. h1 { margin:0; }
1st Nov 2021, 10:44 AM
Stefanoo
Stefanoo - avatar
0
Thank you both it worked.
1st Nov 2021, 10:50 AM
Lebi