我有一个图层问题,该图层 content-3f 显示在它下面的所有其他图层上:
<div id="content-3f">
<div id="content-3-1f"><a href="aboutus.aspx"></a></div>
<div id="content-3-2f"><a href="experiences.aspx"></a></div>
<div id="content-3-3f"></div>
</div>
<div class="line"><hr class="top" /></div>
CSS:
#content-3f {
float: left;
width: 880px;
height: auto;
padding: 10px 0px 10px 26px;
height: 103px;
clear:both;
}
#content-3-1f
{
float: left;
width: 269px;
height: 202px;
margin:0px 20px 0px 0px;
padding: 0px;
background: url('../images/Guided-tour-logo.png') no-repeat left top;
}
#content-3-1f a
{
width: 269px;
height: 202px;
display:block;
}
#content-3-2f
{
float: left;
width: 269px;
height: 202px;
margin:0px 20px 0px 0px;
padding: 0px;
background: url('../images/Taste-chinatown-logo.png') no-repeat left top;
}
#content-3-2f a
{
width: 269px;
height: 202px;
display:block;
}
#content-3-3f
{
float: left;
width: 269px;
height: 202px;
margin:0px 0px 0px 0px;
padding: 0px;
background: url('../images/Taste-chinatown-logo.png') no-repeat left top;
}
截屏:
如您所见,它越过了<hr>
怎么修?