border style property
Sets or retrieves up to three separate border properties, in a shorthand form.
With this property you can customize the borders that appear around HTML elements. You have control over the width, style and color
of the border.
border-style: dotted |
border-style: dashed |
border-style: solid |
border-style: double |
border-style: inset |
border-style: outset |
border-style: groove |
border-style: ridge |
border-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 |
Possible values:
The type of this property is string.
One of the following values: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Description of 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. | |||||||
The color of the border should be the same as the text color. | |||||||
The width of the border in length units. For the supported length units, see the length page. | |||||||
Color of the border. For the supported color values, see the colors page. | |||||||
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. | |||||||
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. | |||||||
Greater than the medium width. | |||||||
Less than the medium width. | |||||||
Default. Underlying content will shine through. | |||||||
The border looks as though it were embedded in the canvas with an additional single line. |
Default: this property has no default value.
Example HTML code 1:
|
||||
<head> <style> .outer { border: 1px solid #ffffff; background-color: #ffb08a; } .middle { margin: 20px; padding: 20px; border: 10px solid #000000; background-color: #ceb379; } .inner { height: 10px; border: 1px solid #ffffff; background-color: #ffffff; } </style> </head> <body> <table cellpadding="0px" cellspacing="10px"> <tr> <td style="background-color: #ffb08a;"> </td> <td>margin</td> <td style="background-color: #000000;"> </td> <td>border</td> <td style="background-color: #ceb379;"> </td> <td>padding</td> </tr> </table> <div class="outer"> <div class="middle"> <div class="inner"></div> </div> </div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the border property in JavaScript:
|
||||
<head> <script type="text/javascript"> function ChangeBorder () { var selectTags = document.getElementsByTagName ("select"); var selectState = []; for (i = 0; i < selectTags.length; i++) { // Returns the index of the selected option whichSelected = selectTags[i].selectedIndex; // Returns the text of the selected option selectState[i] = selectTags[i].options[whichSelected].text; } var div = document.getElementById ("myDiv"); div.style.border = selectState[0] + " " + selectState[1] + " " + selectState[2]; } </script> </head> <body> <div id="myDiv" style="border: 1px solid blue">Sample division with border</div> <select onchange="ChangeBorder ();" size="5"> <option selected="selected" />1px <option />3px <option />8px <option />15px <option />24px </select> <select onchange="ChangeBorder ();" 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> <select onchange="ChangeBorder ();" size="8"> <option selected="selected" />blue <option />red <option />cyan <option />white <option />green <option />yellow <option />purple <option />black </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:
borderBottom
borderBottomColor
borderBottomStyle
borderBottomWidth
borderCollapse
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderSpacing
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
margin
padding
borderBottomColor
borderBottomStyle
borderBottomWidth
borderCollapse
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderSpacing
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
margin
padding
External links:
User Contributed Comments