我希望容器 div 扩展到 div 内部内容(无序列表)的高度。我无法让它工作。有任何想法吗?
HTML:
<div class="container">
<ul id="list">
<li>stuff</li>
...
</ul>
</div>
CSS:(不起作用)
.container {
width: 332px;
height: 100%;
padding: 0.4em;
position: relative;
overflow-y:scroll;
overflow-x:hidden;
}
#list {
position: absolute;
height:auto;
width:317px;
}