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/min-height-table.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>min-height can grow a table over its intrinsic size</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="match" href="min-height-table-ref.html">
<style>
td {
padding: 0;
}
table {
border-spacing: 0;
min-height: 312px; /* To account for the padding + border, which apply to the wrapper box, not the grid box */
border: 1px solid black;
background: green;
padding: 5px;
}
div {
width: 300px;
height: 5px;
}
</style>
<table>
<tr>
<td><div></div></td>
</tr>
</table>