mirror of
https://github.com/servo/servo.git
synced 2025-06-18 22:34:30 +01:00
32 lines
703 B
HTML
32 lines
703 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
line-height: 1;
|
|
}
|
|
table {
|
|
background:green;
|
|
padding: 150px;
|
|
box-sizing: content-box;
|
|
border-spacing: 0;
|
|
}
|
|
th {
|
|
color: yellow;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<th>X</th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|