【发布时间】:2011-08-16 21:09:11
【问题描述】:
代码:
<div class="container_16" id="enlacesSeo">
<div id="titulo_destinos">
<h2>PRINCIPALES DESTINOS</h2>
</div>
<div id="destinos">
<ul class="enlacesSeo">
<li>Items</li>
<li>Items</li>
</ul>
</div>
</div>
<div class="clearfix"></div>
CSS:
*Enlaces principales destinos - SEO */
#enlacesSeo {
border-bottom: 1px solid #DDD;
height:50px;
position:relative; top:-15px;
margin-bottom:5px;
}
* html .enlacesSeo {
/*hack IE6*/
position: relative;
bottom: 30px;
}
*+html #enlacesSeo {
bottom: 30px;
}
#enlacesSeo div#titulo_destinos{
float:left;
width:179px;
border-right: 1px solid #ddd;
}
Firefox、chrome 和 Opera 都可以; Internet Explorer 6/7,忽略 :(
甚至尝试过:
* html .enlacesSeo {
/*hack IE6*/
position: relative;
bottom: 30px;
}
知道我做错了什么吗?
看看图片
【问题讨论】:
-
请发布您的整个 HTML 和 CSS。
标签: css internet-explorer positioning