首页 > 网站 > WEB开发 > 正文

如何去掉滚动条,

2024-04-27 14:16:58
字体:
来源:转载
供稿:网友

如何去掉滚动条,

今天调试项目的时候看到

在div下面套一个table ,如果table条数过多就会出项两个滚动条,如下图:

代码如下:

<div id="xx" style="height: auto; margin: 0px; clear: both; overflow-y:auto"> <table id="dd" style="height: auto;"> <tr> <td></td> </tr> </table> </div>

经林老板提示去掉外面div的height属性,然后修改overflow-y 属性,问题就解决;

具体代码如下:

<div id="xx" style=" margin: 0px; clear: both; overflow:scroll;"> <table id="dd" > <tr> <td></td> </tr> </table> </div>

完美解决


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表