mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
586 B
XML
25 lines
586 B
XML
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>CSS table model: initial table spacing</title>
|
||
|
<style type="text/css">
|
||
|
float { float: left; background: red; }
|
||
|
table { display: table; }
|
||
|
row { display: table-row; }
|
||
|
cell { display: table-cell; background: green; color: white; text-align: center; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<float xmlns="http://www.example.org/">
|
||
|
<cell>THERE</cell>
|
||
|
<row>
|
||
|
<table>
|
||
|
<cell>SHOULD B</cell>
|
||
|
<cell>E N</cell>
|
||
|
<cell>O RED</cell>
|
||
|
</table>
|
||
|
</row>
|
||
|
<cell>ANYWHERE</cell>
|
||
|
</float>
|
||
|
</body>
|
||
|
</html>
|