BTRFS: Implement some copy relevant helpers.
[haiku.git] / docs / interface_guidelines / docbook-css / tables.css
blobda148a38ca1dfe6b704d4b6bdfa46046d53bf0fe
1 /*
2 * tables.css
4 * Copyright (c) 2004 David Holroyd, and contributors
5 * See the file 'COPYING' for terms of use
7 * Part of the Docbook-CSS stylesheet
8 * http://www.badgers-in-foil.co.uk/projects/docbook-css/
12 tgroup {
13 display: table;
16 row {
17 display: table-row;
20 thead {
21 display: table-header-group;
24 tbody {
25 display: table-row-group;
28 entry, entrytbl {
29 display: table-cell;
32 entry[valign=top] {
33 vertical-align: top;
35 entry[valign=bottom] {
36 vertical-align: bottom;
40 * CSS can't generate the indended formatting for segmented lists, so we turn
41 * them into tables instead.
43 * TODO: seems to break formatting when nested in a table entry
45 segmentedlist {
46 display: table;
49 seglistitem {
50 display: table-row;
53 seg, segtitle {
54 display: table-cell;
57 segmentedlist>title {
58 display: table-caption;