我正在開發此website,我希望右側邊欄具有100%的高度。CSS div 100%高度
body {
height: 100%;
min-height: 100%;
position: relative;
}
mydiv {
height: 100%;
min-height: 100%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 290px;
}
我已經讀了很多答案,尤其是這(Prestaul答案): Setting 100% height on an absolutely positioned element when the content expands past the window size。
但對我來說這個伎倆不起作用,小提琴例句也不起作用!
This is the jsfiddle working example.
This is the same code that doesn't work.
你的意思是在頂部的幾個像素的空白?設置你的身體的邊緣爲'0',它應該工作。 – hsan