css 样式 div怎么设置 里面内容放不下的时候出现滑轮滚动条 内容能放下滚动条就不见
1个回答
2019-08-01
展开全部
css部分
.parent{
position:relative;
height:100%;//高度根据需求自行设定
}
.child{
position:absolute;
left:0;
top:0;
right:0;
bottom:0; //left,top,right,bottom都为0,充满真个页面
overflow-y:auto;
overflow-x:hidden; //设置Y轴出现滚动条,X轴隐藏
}
html部分
<div class="parent">
<div class="child"></div>
</div>
---------------------
作者:Franklin_hemm_2012
来源:CSDN
原文:https://blog.csdn.net/franklin_hemm_2012/article/details/78640753
版权声明:本文为博主原创文章,转载请附上博文链接!
.parent{
position:relative;
height:100%;//高度根据需求自行设定
}
.child{
position:absolute;
left:0;
top:0;
right:0;
bottom:0; //left,top,right,bottom都为0,充满真个页面
overflow-y:auto;
overflow-x:hidden; //设置Y轴出现滚动条,X轴隐藏
}
html部分
<div class="parent">
<div class="child"></div>
</div>
---------------------
作者:Franklin_hemm_2012
来源:CSDN
原文:https://blog.csdn.net/franklin_hemm_2012/article/details/78640753
版权声明:本文为博主原创文章,转载请附上博文链接!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询