我有五个要浮动的部分标签,以便它们彼此内联。我过去曾使用过 float / clearfix 技术,它已经奏效了。我无法弄清楚我做错了什么。
CSS:
#content{ padding:30px 0 0 15px; width: 959px; }
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
*html .clearfix {
height: 1%;
}
#1, #2, #3, #4, #5 {padding-right:15px; float: left;}
HTML:
<div id="content">
<section id="1">
<img src="1.png" />
</section>
<section id="2">
<img src="2.png" />
</section>
<section id="3">
<img src="3.png" />
</section>
<section id="4">
<img src="4.png" />
</section>
<section id="5">
<img src="5.png" />
</section>
</div><!-- end content-->
<div class="clearfix"></div>