css – 使div可滚动

前端之家收集整理的这篇文章主要介绍了css – 使div可滚动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个div,我正在显示许多与笔记本电脑相关的东西,用于过滤数据。随着数据大小的增加,div增加了它的大小。

我希望div保持最大尺寸为450px,如果数据增加滚动将自动进入。 div尺寸不应该增加

jsfiddle为它。

css:

.itemconfiguration
{
    min-height:440px;
    width:215px;
    /* background-color:#CCC; */        
    float:left;
    position:relative;
    margin-left:-5px;
}

.left_contentlist
{
    width:215px;
    float:left;
    padding:0 0 0 5px;
    position:relative;
    float:left;
    border-right: 1px #f8f7f3 solid;
    /* background-image:url(images/bubble.png); */
    /* background-color: black; */
}

任何人都可以帮助我实现这一点吗?

@H_301_12@

解决方法

内容超过divs设置高度时,使用overflow-y:auto自动显示滚动。

See this demo

@H_301_12@ @H_301_12@ 原文链接:https://www.f2er.com/css/218152.html

猜你在找的CSS相关文章