如果div是浮动的,我如何将div设置为100%的父div?
以下是我所拥有的两种风格,其中侧边栏是容器的子项 -
#container {
width:1200px;
margin-top:40px;
overflow:hidden;
text-align:center;
}
#sidebar {
width:260px;
float:left;
overflow:hidden;
height:1554px;
}
答案 0 :(得分:0)
我会用Javascript或更好地说jQuery。 看看这里:How do I keep multiple DIVs the same height using jQuery?
答案 1 :(得分:0)
仅包含浮动子级的元素的高度会折叠为0.因此,如果要将子级的高度设置为父级的100%,则需要在父级上手动设置高度。