html – CSS如何使固定高度?

前端之家收集整理的这篇文章主要介绍了html – CSS如何使固定高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<table  cellspacing="0" id="contactTable" style="table-layout:table-layout:fixed;; width:100%; font-weight:normal; position: absolute; top:45; left: 0;">

<td height="50" style="padding-left:5px; overflow:hidden; ">
    <span style="text-transform:capitalize;line-height:100%;">
    //names here
    </span>                          
    </td>

...more code
</table>

这不行。溢出仍然使得单元格更高,高度是包含内容

解决方法

最好的解决方案是把一个div放在单元格的高度上:
<td style="padding-left:5px;">
  <div style="height: 50px; overflow:hidden;">
      ...
  </div>
</td>

BTW,什么是跨度?如果您只需要它的样式,您可以直接替换单元格。

原文链接:https://www.f2er.com/html/233171.html

猜你在找的HTML相关文章