我正在开发这个网站,我希望右侧边栏有 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 absolute Position element when the content expand the window size。
但对我来说,这个技巧不起作用,小提琴的例子也不起作用!