0

只是想知道有人可以帮忙, http ://limerickchambers.hailstormcommerce.com/services/international-trade-services/ 在这里我希望右侧的蓝色边框始终与左侧边栏的高度相匹配,min-height因为边栏不起作用左边一直在变化。我试过height:100%了,但这并没有延长它。它们都被包裹在一个名为的 div 中,并且 Ive 给出了我希望它可以工作但没有运气content的高度。auto而且我不想走这条路position:absolute来让它发挥作用。

所以我有:

.entry-content {
    border:1px solid #d4d9ed;
    border-radius:8px;
    padding:0px 20px 10px 20px;
    overflow:hidden;
    min-height:1056px;
}

代替:

.page-content-right {
    color: #CACACA;
    float: left;
    height: 100%;
    margin-left: 10px;
    padding-right: 0;
    padding-top: 18px;
    width: 710px;
}

里面是:

.singular #content, .left-sidebar.singular #content {
    margin: 0;
    position: relative;
    width: auto;
}

任何帮助都会非常感谢。

4

1 回答 1

1

最后我使用了 jQuery。

jQuery(document).ready(function() {
var leftHeight = jQuery('.content-sidebar-new').height();

jQuery('.entry-content').css({'min-height':leftHeight - 31});
});
于 2013-01-10T13:59:15.060 回答