Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML colgroup definition

Browser support
IEFFOpSaf
FullFullFullFull

Type: block-level element

Syntax

<colgroup> ... </colgroup> (optional end tag)

Description

Defines a group of columns.

Attributes

Attribute Description
align  
char  
charoff  
span = number  
valign  
width = multi-length  

Common attributes.

Example

[Try this example yourself]
<table border="1">
  <colgroup>
    <col width = "10"></col>
    <col width = "40"></col>
  </colgroup>
  <tr>
    <td>Hi</td>
    <td>Hello</td>
  </tr>
</table>

Output

Hi Hello
  • Comments

No comments added.