Logo
  Sunday, May 20, 2012
Sign-In  |  Sign-Up  |  Contact Us  | Bookmark |  RSS Feed

HTML5 Tutorial FeedBurner

The HTML5 <col> Tag   
The HTML5 <col> tag is important in defining the properties for each column. It is used within a <colgroup> element. The use of HTML5 <col> tag is extensive because it allows uniformity in styles for each column. It is the key in avoiding the need to repeatedly define the styles for each cell within a row.

A lot of the attributes that are used for HTML4.01 <col> tag are no longer used for HTML5. The attributes for HTML5 <col> tags are the following:

Attribute

Value

Description

align

left
right
center
justify
char

HTML5 does not support it

char

character

HTML5 does not support it.

charoff

number

HTML5 does not support it.

span

number

Specifies the number of columns a <col> element should span

valign

top
middle
bottom
baseline

HTML5 does not support it.

width

%
pixels
relative_length

HTML5 does not support it.

The <col> tag is capable of supporting the Global Attributes and Event Attributes in HTML5. It is also recognized by the major web browsers like Safari, Google Chrome, Internet Explorer, Firefox and Opera.

Print HTML5 <col> Tag    Bookmark HTML5 <col> Tag

Related Articles  
The HTML5 <option> Tag
The purpose of adding HTML5 <option> tag is to indicate option within a list selected by the author. The HTML5 ...
The HTML5 <link> Tag
The HTML5 <link> tag is used to establish a connection between the web page and another document. HTML5 added the ...
The HTML5 <frame> Tag
The HTML <frame> tag is not supported in HTML5. Before the use of HTML5, the HTML <frame> tag is utilized ...
The HTML5 <div> Tag
The HTML5 <div> tag is the key in separating different partitions within an HTML document. It is capable of ...
The HTML5 <abbr> Tag
The main purpose of the HTML5 <abbr> Tag is to indicate that the text is an abbreviation or an acronym.
The HTML5 <param> Tag
This tag is used to specify the parameters of the plugins. The use of HTML5 <param> tag has to be carefully noted ...
More