gpt4 book ai didi

html - 高度 100% 和溢出

转载 作者:太空宇宙 更新时间:2023-11-03 23:33:41 26 4
gpt4 key购买 nike

我的左列和右列需要有一个垂直滚动条。如何在不指定 height: 100%

的情况下实现滚动
html,body{height:100%;}

.row > .sidebar-fixed {
position: relative;
top: 0;
left:auto;
width: 220px;
height: 100%;
background: #F5F5F5;
overflow-y: scroll;
}

.left {
float:left;
}

.right {
float:right;
}

.fixed-fixed {
margin: 0 240px;
}

问题是为了确保我的两个 div 都需要一个滚动条,我最终必须为所有父级指定高度,这会导致其他布局出现问题。无论如何我们可以在不使用 height: 100% 值的情况下引入滚动条。

http://www.bootply.com/FFZWQoCSJE

最佳答案

试试这个

.row > .sidebar-fixed {
position: relative;
top: 0;
left:auto;
width: 220px;
height: 120px;
background: #F5F5F5;
overflow-y: scroll;
}

并从你的 CSS 中的 html,body 中移除 {height:100%;}

关于html - 高度 100% 和溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24652758/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com