在 IE 的某些分辨率中,我的页脚溢出到新行。我认为这是一个填充问题,它只是将内容推得比容器更宽。它似乎只是在某些分辨率上包装,这对我来说没有意义,因为容器的宽度远小于屏幕的分辨率。似乎找不到解决办法。
CSS:
#footer
{
width: 100%;
background-color: #4e4e4e;
padding: 0 0 0;
margin: 0;
clear: both;
}
#sitemap
{
width: 300px;
padding: 20px 0;
margin: 0 auto;
clear: both;
}
#left_map
{
float: left;
border-right: 1px dotted #ffffff;
}
#right_map
{
float: right;
padding: 30px 0;
}
#copyright
{
font-size: 10px;
font-family: inherit;
color: #ffffff;
text-align: center;
padding: 20px 0 0;
clear: both;
}
HTML(片段):
<div class="clear"></div>
<div id= "footer">
<div id="sitemap">
<div id="left_map">
<h4>Sitemap</h4>
<ul>
<li><a class="selected" href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div id="right_map">
<img src="images/footer_logo.png">
</div>
</div>
<div id= "copyright">
<p>Copyright © 2012 Cornerstone Masons</p>
</div>
</div>
</body>
</html>