要在HTML中给 请注意,使用上述方法添加的滚动条可能会在页面内容不足以填满overflow属性。
overflow-y: scroll;属性。<div style="height: 200px; overflow-y: scroll;">
<!-- 这里放内容 -->
</div>
overflow-x: scroll;属性。<div style="width: 200px; overflow-x: scroll;">
<!-- 这里放内容 -->
</div>
overflow: scroll;属性。<div style="width: 200px; height: 200px; overflow: scroll;">
<!-- 这里放内容 -->
</div>
overflow: auto;属性。
相关文章