ArticleDirectory
- <TH align =#>#= align/layout of text in left, center, and right tables
- Border table size settings
- <Table border cellspacing = #>
- <Table border cellpadding = #>
Nowrap controls do not wrap
. Over_hidden {white-space: nowrap; overflow: hidden; width: 100%; text-overflow: ellipsis;} exceeds the specified length and is replaced by three dots.
Colspan Span multiple columns
RowspanCrossing multiple lines
<Table border cellspacing = 10> table meta gap settings:
<Table border cellpadding = #>
Empty table meta settings:
<TH align =#>#= align/layout of text in left, center, and right tables
Border table size settings
Example:
<Table Border>
<Tr> <TH colspan = 3> morning menu </Th>
<Tr> <TH> food </Th> <TH> drink </Th> <TH> sweet </Th>
<Tr> <TD> A </TD> <TD> B </TD> <TD> C </TD>
</Table>
<Table Border>
<Tr> <TH rowspan = 3> morning menu </Th>
<TH> food </Th> <TD> A </TD> </tr>
<Tr> <TH> drink </Th> <TD> B </TD> </tr>
<Tr> <TH> sweet </Th> <TD> C </TD> </tr>
</Table>
<Table border = 10>
<Tr> <TH> food </Th> <TH> drink </Th> <TH> sweet </Th>
<Tr> <TD> A </TD> <TD> B </TD> <TD> C </TD>
</Table>
<Table border cellspacing = #>
Table meta gap settings:
<Table border cellspacing = 10>
<Tr> <TH> food </Th> <TH> drink </Th> <TH> sweet </Th>
<Tr> <TD> A </TD> <TD> B </TD> <TD> C </TD>
</Table>
<Table border cellpadding = #>
Empty table meta settings:
<Table border cellpadding = 10>
<Tr> <TH> food </Th> <TH> drink </Th> <TH> sweet </Th>
<Tr> <TD> A </TD> <TD> B </TD> <TD> C </TD>
</Table>