我有Firefox 25.0,我的div
沒有得到正確的高度。 在我的CSS:高度在Firefox中不起作用
#page {
background-color: rgba(255,255,255,0.9);
width: 98%;
height: 87%;
position: absolute;
left: 1%;
top: 12%;
display: table;
padding-bottom: 1px;
}
當窗口過小,高度超過87%
我已經嘗試了jQuery的選擇:
$(document).ready(function() {
var contentheight = $("#most").height();
var contentheightt = contentheight * .87;
contentheightt = contentheightt+"px";
$("#page").css("height",contentheightt);
});
在Firefox無論是工作,但它在Safari和Chrome。
這裏是我的網頁:http://sdgr.comule.com/sd/
謝謝你的幫助。添加這些少數幾個可以讓我用jQuery修改高度出於某種原因。 –