How can I remove space (margin) above HTML header?

后端 未结 8 1925
栀梦
栀梦 2020-11-29 05:01

I am creating a website.

I have written the HTML part and now I am writing the stylesheet. But there is always some space above my header. How can I remove it?

8条回答
  •  感动是毒
    2020-11-29 05:05

    It is good practice when you start creating website to reset all the margins and paddings. So I recommend on start just to simple do:

    * { margin: 0, padding: 0 }
    

    This will make margins and paddings of all elements to be 0, and then you can style them as you wish, because each browser has a different default margin and padding of the elements.

提交回复
热议问题