我知道这样的问题一直被问到,我很抱歉再次提出这样的问题,但我似乎无法自己弄清楚。我试图添加页眉和页脚,但最终使它们正确放置,但它们不能填满整个区域并被白色包围。我怎样才能解决这个问题?

https://codepen.io/jaydotxxx/pen/yOvLyv

# container {
  margin: 0 auto;
  padding:40px;
}

#header {
  z-index:0;

    height: 30px;
    background-color: black;
}
#footer {
  z-index:2;
    height: 30px;
    width:100%;
    padding:0px;
    position: relative;
    bottom: 0;
    background-color: black;
}
#image {
  z-index:1;
  height:1000px;
  width:100px;
  margin:20px auto;

  padding:50px;
  background-color:red;

}

最佳答案

我认为您正在寻找类似的东西:

body {
  margin: 0;
}

关于html - 页眉和页脚有白色边框吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36522689/

10-12 13:01