0
我有一個側欄,有時比主頁面大,我嘗試設置垂直溢出,但垂直滾動條仍然不出現。爲什麼垂直滾動條不會出現雖然設置了垂直溢出?
/**
* Created by eduard on 07.01.2016.
*/
console.log("Height 1 ", sidebar_height);
if ($(window).height() < sidebar_height + 35) {
$('body').css('overflowY', 'auto');
//$("#sidebar").css('overflowY', 'auto');
console.log("Scrollbar should appear", $(window).height() - sidebar_height);
}
else {
console.log("Scrollbar should not appear", $(window).height() - sidebar_height);
}
爲什麼垂直滾動條不出現,儘管垂直型溢出設置?
嘗試將其設置爲滾動,而不是汽車。 – Styphon
@Styphon將它設置爲「滾動」仍然不會使滾動條出現 –
您是否確實擁有固定的高度? – epascarello