HTML/CSS/Table Attributes/span

Материал из Web эксперт
Перейти к: навигация, поиск

"span" sets the number of columns in a group

   <source lang="html4strict">
   

<HTML> <BODY>

<colgroup> <col span="3" align="left" style="color:red; font-weight:bold"> <col span="1" align="center" style="color:green"> <col span="2" align="right" style="color:blue">
Column 1 Column 2 Column 3 Column 4 Column 5 Column 6
Cell 1 Cell 2 Cell 3 Cell 4 Cell 5 Cell 6

</BODY> </HTML>


     </source>