绝对定位不扩展

时间:2011-11-28 21:55:45

标签: css html position css-position

我有以下代码:

<div id="display_vendors">
<ul class="vendor_types">
<li>Category 1</li>                         
</ul>
</div>
<div id="display_vendors_container">
<h4>Search Results</h4><br>Here are your search results! You can simply navigate to the other categories by clicking on one on the left hand side:<br><br><br><br><br><br><br><br><br>Testing<br><br><br><br><br>More<br><br><br><br><br><br><br><br>Sljf
</div>

然后我有以下CSS:

#display_vendors ul.vendor_types li {
background-color:#000000;
color:#FFFFFF;
width:200px;
line-height:1.5em;
margin:2px 0 0 0;
padding:10px;
border-width:1px;
border-color:#000000;
border-style:solid;
-webkit-border-top-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-bottomleft: 10px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
display:block;
height:100%;
}

#display_vendors ul.vendor_types li:hover {
background-color:#949494;
}

#display_vendors_container{
position:absolute;
top:59px;
left:221px;
width:700px;
height:100%;
border-width:1px;
border-color:#000000;
border-style:solid;
-webkit-border-radius: 10px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 10px;
-moz-border-radius-topleft: 0;
border-radius: 10px;
border-top-left-radius: 0;
padding:10px;
min-height:400px;
}

.dispay_vendor_type {
color:#FFFFFF;
text-decoration:underline;
}

.dispay_vendor_type:hover {
color:#FFFFFF;
text-decoration:underline;
}

现在我的问题是#display_vendors_container不会显示div的全部内容。它只会使它与#display_vendors div的高度相同。如果我删除#display_vendors_container上的绝对定位,它会显示所有内容但不在正确的位置。关于可能导致这种情况的任何想法?

2 个答案:

答案 0 :(得分:1)

高度:100%;在#display_vendors_container是你的问题;删除它,它会没事的。

证明:http://jsfiddle.net/w3LSV/

答案 1 :(得分:0)

在CSS中添加:

body, html {height:100%}