How can I add a vertical scrollbar to my div automatically?

后端 未结 7 1924
野性不改
野性不改 2021-01-30 00:42

I want to add a vertical scrollbar to my

. I\'ve tried overflow: auto, but it is not working. I\'ve tested my code in Firefox and Chrome.
7条回答
  •  梦毁少年i
    2021-01-30 01:06

    You have to add max-height property.

    .ScrollStyle
    {
        max-height: 150px;
        overflow-y: scroll;
    }
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!
    Scrollbar Test!

提交回复
热议问题