summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/resources/min-width.css
blob: 07755d5bc3c34ad8281be5fb7e81c0aded19dc7c (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
.table-parent {
    width: 1000px; 
    height: 1000px;
    background-color: #ccc;
}

.block {
    display: table;
}

.inline {
    display: inline-table;
}

.block,
.inline {
    border-spacing: 0;
    padding: 10px 10px 10px 10px;
    border: solid 5px #00f;
    background-color: #0f0;
}

.row-group {
    display: table-row-group;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
    padding: 0 0 0 0;
}

.horizontal {}

.vertical {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; 
}

.ltr {}

.rtl {
    direction: rtl;
}