blob: 5955d014619955eda0e3c3550f6dc90b7d3f3e83 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
html {
font: 12px sans-serif;
}
.h {
writing-mode: horizontal-tb;
}
.vlr {
writing-mode: vertical-lr;
}
.vrl {
writing-mode: vertical-rl;
}
.ltr {
direction: ltr;
}
.rtl {
direction: rtl;
}
table {
border-spacing: 0;
margin-bottom: 10px;
caption-side: top;
}
td {
width: 200px;
height: 100px;
background: silver;
padding: 0;
}
caption {
background: cyan;
min-block-size: 20px;
}
</style>
</head>
<body>
<table class="h ltr">
<caption>table caption</caption>
<tr><td></td></tr>
</table>
<table class="h rtl">
<caption>table caption</caption>
<tr><td></td></tr>
</table>
<table class="vlr ltr">
<caption>table caption</caption>
<tr><td></td></tr>
</table>
<table class="vrl ltr">
<caption>table caption</caption>
<tr><td></td></tr>
</table>
|