blob: b17ef4197e280334b361ecb4231ac2da264b0c72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<html>
<head>
<title>colgroup pseudos</title>
<style>
div.table {background-color:red; color:yellow; display:table}
div.col {background-color:green; width:400px; display:table-column}
</style>
</head>
<body>
<div class="table">
<div class="col" ></div> anonymous content
</div>
<div class="table">
<div class="col" ></div> <div style="display:table-cell">anonymous cell</div>
</div>
<div class="table">
<div class="col" ></div> <div style="display:table-row">anonymous row</div>
</div>
<div class="table">
<div class="col" ></div> <div style="display:table-row-group">anonymous rowgroup</div>
</div>
<div class="table">
<div class="col" ></div> <div style="display:table">anonymous table</div>
</div>
<div class="table">
<div class="col" ></div> <div style="display:table-caption">anonymous caption</div>
</div>
</body>
</html>
|