FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Column span Property

Column Object Reference Column Object

Example

Set the background color of the first two columns to red:

document.getElementById("myCol").span = "2";
document.getElementById("myCol").style.backgroundColor = "red";
Try it Yourself »

Definition and Usage

The span property sets or returns the value of the span attribute of a column.

The span attribute defines the number of columns a <col> element should span.


Browser Support

Property
span Yes Yes Yes Yes Yes

Syntax

Return the span property:

columnObject.span

Set the formMethod property:

columnObject.span=number

Property Values

Value Description
number Specifies the number of columns a <col> element should span. Negative values are not allowed

Technical Details

Return Value: A Number, representing the number of columns

More Examples

Example

Return the number of columns a <col> element should span:

var x = document.getElementById("myCol").span;

The result of x could be:

2
Try it Yourself »

Related Pages

HTML reference: HTML <col> span attribute


Column Object Reference Column Object