height style property
Specifies or returns the height 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 height property contains the height of the visible content with the horizontal scrollbar, but without the padding, border and the margin.
- Use the width property to set the width of the visible area for an element.
- You can specify a range for the size of an element with the minWidth, minHeight, maxWidth and maxHeight properties.
- Use the left, top, right and bottom properties to specify the position for an 'absolute', 'fixed', or 'relative' positioned element.
The type of the height property is string. You can set or retrieve the value of the height property as an integer with the pixelHeight property. It contains the value in pixels.
If you want to get or set the height property as a floating-point number that specifies the value in the current unit type of the height property, use the posHeight property.
The properties mentioned above can be used to access style settings.
If you need the height of a rendered element you can use the clientHeight, offsetHeight and scrollHeight properties and the getBoundingClientRect method.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: height |
Possible values:
The type of this property is string.
One of the following values:
Default. The height depends on the values of other properties. | |||||||
The height of the element in length units. For the supported length units, see the length page. | |||||||
The height of the element is the specified percentage of the height of parent element. | |||||||
Takes the value of this property from the computed style of the parent element. |
Default: auto.
Example HTML code 1:
This example illustrates the use of the height property:
|
||||
<head> <style> .example { background-color: #E9E9E9; width: 300px; height: 200px; } </style> </head> <body> <div class="example">The height is 200px</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the height property in JavaScript:
|
||||
<head> <style> .example { background-color: #E9E9E9; width: 300px; height: 200px; } </style> <script type="text/javascript"> function ChangeHeight () { var div = document.getElementById ("myDiv"); var input = document.getElementById ("myInput"); div.style.height = input.value; } </script> </head> <body> <div class="example" id="myDiv"></div> <input id="myInput" type="text" value="100" /> <button onclick="ChangeHeight ();">Change the height of the div!</button> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.currentStyle, htmlElement.runtimeStyle, htmlElement.style
HTML elements:
a, abbr, acronym, address, applet, b, bdo, big, blink, blockquote, body, button, caption, center, cite, code, dd, del, dfn, dir, div, dl, dt, em, embed, fieldset, font, form, h1, h2, h3, h4, h5, h6, hr, i, iframe, img, input:button, input:checkbox, input:file, input:image, input:password, input:radio, input:range, input:reset, input:search, input:submit, input:text, ins, isindex, kbd, label, legend, li, listing, marquee, menu, nobr, object, ol, optgroup, option, p, plaintext, pre, q, rt, ruby, s, samp, select, small, span, strike, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, tr, tt, u, ul, var, xmp
Related pages:
External links:
User Contributed Comments