我试图通过将框高度调整为溢出的内容高度来修复溢出的浮动内容,但它似乎并没有起到作用。
if ( $('.content-right').outerHeight() > $('.content-right').parent().parent().height() ) {
$('.content-right').parent().parent().height($('.content-right').outerHeight(true));
}
console.log('Box Height: ' + $('.content-right').parent().parent().height());
console.log('Content Height: ' + $('.content-right').height() );
这将输出
Box Height: 599
Content Height: 594
这是不正确的,因为在下面的示例中 div 显然要大得多。有任何想法吗?
图片形式的问题区域:http: //prntscr.com/4p1obb