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.
有人可以向我解释为什么最大高度不适用于表格元素吗?
这是代码
在 CSS 2.1 中,'min-height' 和 'max-height' 对表格、内联表格、表格单元格、表格行和行组的影响是未定义的。
阅读规范。
display: block如果要强制,请将表设置为max-height。
display: block
max-height
您必须将表格包装在 DIV 中以使最大高度起作用。正如 bookcasey 提到的,表格的最大高度在规范中是未定义的。
您需要指定显示。尝试显示:阻止;