减小窗口大小时,窗口页面中的表不应具有水平滚动条

  • 本文关键字:窗口 滚动条 水平 小时 html css
  • 更新时间 :
  • 英文 :


我试过了

<table border="0" cellspacing="0" 
 cellpadding="0" height="25" width="100%" style='table-layout:fixed' >

<table border="0" cellspacing="0" 
 cellpadding="0" height="25" width="100%" overflow:hidden >

您需要指定两个属性,table-layout:fixed on table 和 white-space:nowrap; 在单元格上。您还需要移动溢出:隐藏;到细胞也。

table {width:100%; table-layout:fixed;}
td {overflow:hidden; white-space:nowrap;}

仅当文本溢出时,才能使用 overflow-x:hidden 水平隐藏文本。类似地overflow-y:hidden隐藏垂直滚动条。请记住,还要将table-layout设置为 fixed,将white-space设置为 no-wrap

最新更新