Make div scrollable

后端 未结 7 1241
梦谈多话
梦谈多话 2020-12-28 13:18

I have a div that I am displaying many things in that are related to laptop for filtering data. The div increases it\'s size as the data size increases in it.

I want

相关标签:
7条回答
  • 2020-12-28 13:43

    use overflow:auto property, If overflow is clipped, a scroll-bar should be added to see the rest of the content,and mention the height

    DEMO

     .itemconfiguration
        {
            height: 440px;
            width: 215px;
            overflow: auto;
            float: left;
            position: relative;
            margin-left: -5px;
        }
    
    0 讨论(0)
提交回复
热议问题