<div style="overflow:auto;width:100%;height:753px"align="center">老是有滚动条出现!!如何隐藏滚动条
发布网友
发布时间:2022-04-21 15:52
我来回答
共4个回答
热心网友
时间:2022-04-21 17:22
<div style="overflow:auto;width:100%;height:753px"align="center">
你这个地方高度是写死了的!height = "753px"
而这里又在用overflow:auto;这就表示了当高度大于753的时候是会overflow:auto;所以就会出现滚动条!
你可以用overflow:hidden;多于的部份就会隐藏,就不会出现滚动条了!
也可以<div style="overflow:auto;width:100%;height:auto"align="center">
它就会自动适应高度了!
热心网友
时间:2022-04-21 18:40
scrolling="no" 速度试吧
热心网友
时间:2022-04-21 20:14
overflow:hidden;
热心网友
时间:2022-04-21 22:06
<div style="overflow:hidden;width:100%;height:753px"align="center">