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. >
. I\'ve tried overflow: auto, but it is not working. I\'ve tested my code in Firefox and Chrome. >
overflow: auto
To show vertical scroll bar in your div you need to add
height: 100px; overflow-y : scroll;
or
height: 100px; overflow-y : auto;