因此,到目前为止,该站点的大部分内容都使用自动居中(容器和导航具有左/右边距:自动),并且除了页脚之外,一切似乎都很顺利。
当我调整窗口大小时,一切都很好地填充了,除了当我水平滚动时,页脚似乎在右侧被切断。我读过这可能是一个浏览器错误。虽然它出现在 IE 和 chrome 和 firefox 中,所以它可能只是草率的编码(我是一个大新手)。
这是CSS:
#footer {
background-image:url(../Images/footer_bg.jpg);
color: white;
height:300px;
padding-top:20px;
}
/*I have 4 headings with Ps that I want to display horizontally side by side*/
#footerContent{
min-width:1000px;
}
/*So I tried floating <li> inside <ul> and limiting its width, which worked fine */
#footerContent ul{
width:1000px;
margin-left:auto;
margin-right:auto;
}
#footerContent li {float:left; width:250px; }
重申一下,当浏览器全屏或调整大小时,它可以正常工作。但是在调整大小并使用水平滚动条一直向右滚动后,背景图像就会被切断。
我试过 width:100%, min-width, width:1000px; 但这些似乎都不起作用。