我对侧边栏的高度有疑问。我使用jQuery来测量内容的高度,然后将此高度添加到侧边栏以显示侧边栏的阴影。但它在 IE 中出现问题。
该网站的链接是:http ://www.norwichkitty.com/business-directory/
请检查左侧边栏阴影问题..
$(document).ready(function() {
var blockheight = $('.right-content').height();
$('.sidebar').css('height', blockheight);
});
它的CSS视图是
element.style {
height: 1592px;
}
.sidebar {
background: url("../img/sidebar-shadow.png") repeat-y scroll right center transparent;
float: left;
height: 100%;
overflow-y: auto;
position: relative;
width: 305px;
z-index: 999999;
}
如果有任何 CSS 解决方案来解决这个问题.. 请让我知道..
谢谢你们