我曾在一个网站上进行课堂作业。在我的电脑上看起来很好,但上传后,身体左侧有一个约210px宽的垂直红色区域,我不知道来源。 (计算机和上传都使用FF。)我在代码中看不到任何宽度或那种颜色(#e62f2f)。这可能与表单相关的错误有关吗?我很难过。
以下是发布的网站:http://bengal.missouri.edu/~gksc87/7370/satterfieldminiproject4plain.html
答案 0 :(得分:2)
因为你的
div#wrapper {
background: #035f03 url("images/bg_tile_210pxw.png") repeat-y scroll 0 0;
margin: 0 auto;
width: 90%;
}
删除该图片。应该是这样的 -
div#wrapper {
background: #035f03;
margin: 0 auto;
width: 90%;
}