width style property

Browser support:
Specifies or returns the width of the visible area for an element.
This property has effect only on block-level elements or on elements with absolute or fixed position. The overflowing content can be manipulated by the overflow property.
The width property contains only the width of the visible contents with the vertical scrollbar, but without the padding, border and the margin.
The type of the width property is string.
  • You can set or retrieve the value of the width property as an integer with the pixelWidth property. It contains the value in pixels.
  • If you want to get or set the width property as a floating-point number that specifies the value in the current unit type of the width property, use the posWidth property.
The properties mentioned above can be used to access style settings. If you need the width of a rendered element, you can use the clientWidth, offsetWidth and scrollWidth properties and the getBoundingClientRect method.

Syntax:

object.width;
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: width

Possible values:

The type of this property is string.
 One of the following values: 
auto
Default. The width of the object is determined by the values of other properties.
inherit
Takes the value of this property from the computed style of the parent element.
width in non-negative length
The width of the element in length units. For the supported length units, see the length page.
width in non-negative percentage
The width of the element is the specified percentage of the width of parent element.
Default: auto.

Example HTML code 1:

This example illustrates the use of the width property:
<head>
    <style>
        .example {
            background-color: #E9E9E9;
            width: 300px;
            height: 200px;
        }
    </style>
</head>
<body>
    <div class="example"></div>
</body>
Did you find this example helpful? yes no

Example HTML code 2:

This example illustrates the use of the width property in JavaScript:
<head>
    <style>
        #myDiv {
            background-color: #E9E9E9;
            width: 300px;
            height: 200px;
        }
    </style>

    <script type="text/javascript">
        function ChangeWidth () {
            var div = document.getElementById ("myDiv");
            var input = document.getElementById ("myInput");

            div.style.width = input.value;
        }
    </script>
</head>
<body>
    <div id="myDiv"></div>

    <input id="myInput" type="text" value="100" />
    <button onclick="ChangeWidth ();">Change the width of the div!</button>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content