mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
468 B
HTML
31 lines
468 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Shrink-wrapping of tables</title>
|
||
|
<style type="text/css">
|
||
|
|
||
|
table, td {
|
||
|
border: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border-spacing: 0;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
display: inline-block;
|
||
|
width: 50px;
|
||
|
background: yellow;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<table><tr>
|
||
|
<td style="background:aqua;color:aqua;width:200px"><span>x</span>​<span>x</span>​<span>x</span>​<span>x</span></td>
|
||
|
</tr></table>
|
||
|
|
||
|
</body>
|
||
|
</html>
|