我有一个CSS问题:

我在容器中有一个绝对定位的div。容器不会调整为内容的高度。为什么?

最佳答案

您需要为此使用JavaScript。使用jQuery,您可以做

var parentHeight = $('#parent').height(),
    childHeight = $('#child').height();

if (parentHeight <= childHeight) {
    $('#parent').height(childHeight);
}


http://jsfiddle.net/mkCU5/2/中查看工作示例

10-04 11:24