mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
22 lines
278 B
HTML
22 lines
278 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<style>
|
|
.pad { padding: 100%; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<table>
|
|
<div class="pad">x</div>
|
|
<tr>
|
|
<td>a</td>
|
|
<td>b</td>
|
|
<div class="pad">c</div>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|