CSS div 100%高度

前端之家收集整理的这篇文章主要介绍了CSS div 100%高度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发这个 website,我想要右侧边栏有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.

解决方法

尝试将身体风格设置为:
body { position:relative;}

它为我工作

原文链接:https://www.f2er.com/css/218117.html

猜你在找的CSS相关文章