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

后端 未结 8 1920
栀梦
栀梦 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

    Just for completeness, changing overflow to auto/hidden should do the trick too.

    body {
      margin: 0px;
      padding: 0px;
    }
    
    header {
      margin: 0px;
      padding: 0px;
      height: 20em;
      background-color: #C0C0C0;
      overflow: auto;
    }

    OQ Online Judge

提交回复
热议问题