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

后端 未结 7 1920
野性不改
野性不改 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条回答
  •  执笔经年
    2021-01-30 01:14

    I got an amazing scroller on my div-popup. To apply, add this style to your div element:

    overflow-y: scroll;
    height: XXXpx;
    

    The height you specify will be the height of the div and once if you have contents to exceed this height, you have to scroll it.

    Thank you.

提交回复
热议问题