Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.suspensionTableScroll { width: 100%; height: 180px; overflow: auto; }
我有上面的CSS。该表是 180 像素,这很好,但其中的数据未与顶部对齐。行添加在中间,随着我添加更多行,高度会变小。
我怎样才能根据他们的内容文本使他们的高度自动?
我试过了vertical-align:top,vertical-align:text-top但行仍然出现在中间
vertical-align:top
vertical-align:text-top
也许您想设置放置表格的外部元素的高度?
更新:
表格单元格高度会根据表格高度自动调整。
使用max-height而不是height,因此表格单元格的高度将取决于它们的上下文,并且您的表格高度不会超过 180 像素。