标签: html css
我在此图片中遇到了此卷轴的问题:
问题是我只想要显示垂直滚动而不是水平滚动。编码时我使用了overflow:scroll属性。它在Firefox和IE中看起来是否相同,还是有其他方法可以做到这一点?
overflow:scroll
答案 0 :(得分:2)
只需使用overflow-x: hidden; overflow-y: scroll;或overflow: auto;代替overflow: scroll;。
overflow-x: hidden; overflow-y: scroll;
overflow: auto;
overflow: scroll;