Javascript Reference - HTML DOM Style columnWidth Property








The columnWidth property gets and sets the width of the columns.

Browser Support

columnWidth Yes (WebkitColumnWidth) 10.0 Yes (MozColumnWidth) Yes (WebkitColumnWidth) Yes

Syntax

Return the columnWidth property:

var v = object.style.columnWidth 

Set the columnWidth property:

object.style.columnWidth='auto|length|initial|inherit'

Property Values

auto
Default value. column width is determined by the browser
length
length sets the width of the columns
initial
sets to default value
inherit
Inherits this property from its parent element




Technical Details

Default Value: auto
Return Value: A string representing the column-width property
CSS Version CSS3

Example

The following code shows how to change the width of the columns.


<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">test</button>
<!--from  w w  w. ja  va 2s  . c  o  m-->
<div id="myDIV">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh 
euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim 
ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl 
ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit 
in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla 
facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent 
luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber 
tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod 
mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus 
legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores 
legere me lius quod ii legunt saepius.
</div>

<script>
function myFunction() {
    document.getElementById("myDIV").style.WebkitColumnWidth = "100px"; // Code for Chrome, Safari, and Opera
    document.getElementById("myDIV").style.MozColumnWidth = "100px"; // Code for Firefox
    document.getElementById("myDIV").style.columnWidth = "100px";
}
</script>

</body>
</html>

The code above is rendered as follows: