|
|
home
/ reference
/ html
<colgroup></colgroup>

align
valign
span
The <colgroup> tag is used to group columns together so their
alignment properties can be set all at once.
<colgroup align="">
| |
Description
| |
The aligh attribute sets the text alignment of the column group.
Possible values are center, left, right, and justify.
|
Code
| |
<colgroup align="right">YOUR TEXT HERE</colgroup>
|
|
<colgroup valign="">
| |
Description
| |
The valign attribute set the vertical text alignment within a column group.
Possible values are bottom, middle, top, and baseline.
|
Code
| |
<colgroup valign="VALUE1">YOUR TEXT HERE</colgroup>
|
|
<colgroup span="">
| |
Description
| |
The span attribute is used to set how many columns the <colgroup> tag is to affect.
|
Code
| |
<colgroup align="3">YOUR TEXT HERE</colgroup>
|
|
|