bottom style property
Specifies or returns the bottom coordinate of a positioned element.
A positioned element is an element whose position property is set to relative, absolute or fixed.
The value of the bottom property specifies the bottom position of the element including the padding,
scrollbar, border and the margin.
The type of the bottom property is string.
- You can set or retrieve the value of the bottom property as an integer with the pixelBottom property. It contains the value in pixels.
- If you want to get or set the bottom property as a floating-point number that specifies the value in the current unit type of the bottom property, use the posBottom property.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: bottom |
Possible values:
The type of this property is string.
One of the following values:
Default. The bottom position of the object is in accordance with the default layout of the page. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
The bottom position of the element in length units. For the supported length units, see the length page. | |||||||
The bottom position is the specified percentage of the height of the parent object. |
Default: auto.
Example HTML code 1:
This example illustrates the use of the bottom property:
|
||||
<head> <style> .example { position: relative; bottom: 50px; background-color: red; } </style> </head> <body> <div class="example">The bottom of this is 50px above the center line</div> <div style="border-top: 5px solid #408080;">Center-line</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the bottom property in JavaScript:
|
||||
<head> <style> #myDiv { position: absolute; right: 100px; bottom: 100px; width: 200px; height: 50px; background-color: #c00000; } </style> <script type="text/javascript"> function ChangeBottom () { var div = document.getElementById ("myDiv"); var input = document.getElementById ("myInput"); div.style.bottom = input.value + "px"; } </script> </head> <body> <div id="myDiv"> An absolute positioned division </div> <input id="myInput" type="text" value="100" /> <button onclick="ChangeBottom ();">Change the bottom position!</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, p, plaintext, pre, q, rt, ruby, s, samp, select, small, span, strike, strong, sub, sup, table, textarea, tt, u, ul, var, xmp
Related pages:
External links:
User Contributed Comments