You are here: Reference > JavaScript > client-side > style handling > properties > borderBottomStyle
borderBottomStyle style property
Specifies or returns the style of the element's bottom border.
Available border styles:
border-bottom-style: dotted |
border-bottom-style: dashed |
border-bottom-style: solid |
border-bottom-style: double |
border-bottom-style: inset |
border-bottom-style: outset |
border-bottom-style: groove |
border-bottom-style: ridge |
border-bottom-style: window-inset |
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: border-bottom-style |
Possible values:
The type of this property is string.
One of the following values:
The border looks as though it were embedded in the canvas. | |||||||
The border looks as though it were coming out of the canvas. | |||||||
A solid line is drawn. | |||||||
A series of short line segments is drawn. | |||||||
A series of dots is drawn. | |||||||
A double line border. | |||||||
The border looks as if it has been carved into the background. | |||||||
Turns the border off. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
The border looks as though it were embedded in the canvas. | |||||||
Default. Border width is null. | |||||||
The border looks as though it were coming out of the canvas. | |||||||
The border looks as if it's protruding out of the background. | |||||||
A solid line is drawn. | |||||||
The border looks as though it were embedded in the canvas with an additional single line. |
Default: none.
Example HTML code 1:
This example illustrates the use of the border-bottom-style property:
|
||||
<head> <style> .example { border-bottom-color: blue; border-bottom-width: 1px; border-bottom-style: dashed; } </style> </head> <body> <div class="example">Border-bottom-style: dashed</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the borderBottomStyle property in JavaScript:
|
||||
<head> <script type="text/javascript"> function ChangeBorder (selectTag) { // Returns the index of the selected option var whichSelected = selectTag.selectedIndex; // Returns the text of the selected option var selectState = selectTag.options[whichSelected].text; var div = document.getElementById ("myDiv"); div.style.borderBottomStyle = selectState; } </script> </head> <body> <div id="myDiv" style="border-bottom: 6px solid blue">Sample division with border-bottom</div> <select onchange="ChangeBorder (this);" size="10"> <option />dotted <option />dashed <option />double <option />groove <option />inset <option />none <option />outset <option />ridge <option selected="selected" />solid <option />window-inset </select> </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, frame, frameset, h1, h2, h3, h4, h5, h6, hr, html, 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, td, textarea, th, tt, u, ul, var, xmp
Related pages:
border
borderBottom
borderBottomColor
borderBottomWidth
borderCollapse
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderSpacing
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
borderBottom
borderBottomColor
borderBottomWidth
borderCollapse
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderSpacing
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
External links:
border-bottom-style (MSDN)
border-bottom-style (Mozilla Developer Center)
border-bottom-style (Safari Reference Library)
border-bottom-style (W3C)
border-bottom-style (Mozilla Developer Center)
border-bottom-style (Safari Reference Library)
border-bottom-style (W3C)
User Contributed Comments