mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Percentage heights on table cells</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<table border height="200">
|
||
|
<tr><td>This is the first cell in a 200 pixel high table.</td></tr>
|
||
|
<tr><td height="50%">This is the second cell, with <b>cell</b> height 50%.</td></tr>
|
||
|
<tr><td>This is the third cell.</td></tr>
|
||
|
</table>
|
||
|
|
||
|
<table border>
|
||
|
<tr><td>This is the first cell in an auto-height table.</td></tr>
|
||
|
<tr><td height="50%">This is the second cell, with <b>cell</b> height 50%.</td></tr>
|
||
|
<tr><td>This is the third cell.</td></tr>
|
||
|
</table>
|
||
|
|
||
|
<table border height="200">
|
||
|
<tr><td>This is the first cell in a 200 pixel high table.</td></tr>
|
||
|
<tr height="50%"><td>This is the second cell, with <b>row</b> height 50%.</td></tr>
|
||
|
<tr><td>This is the third cell.</td></tr>
|
||
|
</table>
|
||
|
|
||
|
<table border>
|
||
|
<tr><td>This is the first cell in an auto-height table.</td></tr>
|
||
|
<tr height="50%"><td>This is the second cell, with <b>row</b> height 50%.</td></tr>
|
||
|
<tr><td>This is the third cell.</td></tr>
|
||
|
</table>
|
||
|
|
||
|
</body>
|