给div添加滚动条

时间:2022-05-03 17:08:34

方法1:宽和高必须设置,否则无效

<div style="overflow:scroll; width:200px; height:200px;"></div>

此方法不管内容有没有超出,都会有滚动条,所以一般不用

方法2:

<div style=" overflow-y:auto; overflow-x:auto; width:200px; height:200px;"></div>

或者

<div style="position:absolute; width:200px;height:200px; overflow:auto"></div>

如果只需要水平滚动条: overflow-x:auto

如果只需要垂直滚动条: overflow-y:auto