mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
37 lines
825 B
HTML
37 lines
825 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
table {
|
|
table-layout: fixed;
|
|
width: 400px;
|
|
border-spacing: 0;
|
|
}
|
|
td {
|
|
padding: 0;
|
|
}
|
|
.td1 {
|
|
background: #ff0000;
|
|
height: 100px;
|
|
}
|
|
.td2 {
|
|
background: #00ff00;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table id="mn">
|
|
<tbody>
|
|
<tr>
|
|
<td class="td1" width="50">
|
|
</td>
|
|
<td class="td2" width="150">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|