blob: 2408b3142ff30f5246324bc27150f88330e1064d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!doctype html>
<title>max-height cannot shrink a table under its intrinsic size</title>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1651530">
<link rel="help" href="https://drafts.csswg.org/css-tables/#computing-the-table-height">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5336">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<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>
|