<script type="text/javascript">
$(".content_R").css({'height':($(".content_L").height()+'px')});
$("#content_R").height($("#content_L").height());
var highestCol = Math.max($('#content_R').height(),$('#content_R').height());
$('#content_R').height(highestCol);
</script>
上面的代码将右侧divs高度与左侧的内容div匹配。我遇到了一些css和布局问题。我需要这样做,以便正确的div等于内容div减去10px。
是否有一个简单的编辑要添加到此代码中。我不知道javascript,只有php和设计。
答案 0 :(得分:1)