how can I add a vertical scrollbar to my div automatically?
问题 I want to add vertical scrollbar to my <Div> . I've tried overflow:auto , but it is not working. I've tested my code in Firefox and Chrome. I'm pasting the Div style code here: float:left; width:1000px; overflow: auto; 回答1: You need to assign some height to make the overflow: auto; property work. For testing purpose, add height: 100px; and check. and also it will be better if you give overflow-y:auto; instead of overflow: auto; , because this makes the element to scroll only vertical but not