Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/max-height-table.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>max-height cannot shrink a table under its intrinsic size</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="match" href="max-height-table-ref.html">
<style>
td {
padding: 0;
}
table {
border-spacing: 0;
max-height: 0;
border: 1px solid black;
background: green;
padding: 5px;
}
div {
width: 5px;
height: 5px;
}
</style>
<table>
<tr>
<td><div></div></td>
</tr>
</table>