私のWebサイトには、高さが100%の本体があります。jqueryは本体の高さを見つけて、サイドバーのcssを高さに合わせて変更することになっています。Firefox とすべてのバージョンの IE で動作しますが、Chrome や Safari では動作しません。私はこれに少し慣れていないので、助けてくれてありがとう。ここに私のサイトがあります: http://avk.io-web.com/product-list/healthy-gormet-cookies そしてここに私のjqueryがあります:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var SecondaryContentHeight= $(".secondary_body_content").height()
$(".left_menu").css("height", SecondaryContentHeight);
});
</script>