0
我有側邊欄的高度問題..我使用jQuery的到衡量內容的高度,然後添加此高度,側邊欄顯示欄陰影。但它在IE中給出了問題。CSS身高問題
網站的這個鏈接是: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解決方案..請讓我知道..
謝謝大家
你爲什麼要使用的位置是:相對的,這裏的z-index? –
我只是想解決身高問題.. –
你清理你的浮標? –