borderColor style property
Specifies or returns the color of the element's border.
The order of the color values: top, right, bottom, left.
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-color |
Possible values:
The type of this property is string.
One of the following values: | ||||||||||||
|
Description of values:
The color of the border should be the same as the text color. | |||||||
Color of the border. For the supported color values, see the colors page. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
Default. Underlying content will shine through. |
Default: transparent.
|
Example HTML code 1:
This example illustrates the use of the border-color property:
|
||||
<head> <style> .example { border-color: blue; border-width: 1px; border-style: solid; } </style> </head> <body> <div class="example">Border-color: blue</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the borderColor 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.borderColor = selectState; } </script> </head> <body> <div id="myDiv" style="border: 1px solid blue">Sample division with border</div> <select onchange="ChangeBorder (this);" 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:
border
borderBottom
borderBottomColor
borderBottomStyle
borderBottomWidth
borderCollapse
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderSpacing
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
borderBottom
borderBottomColor
borderBottomStyle
borderBottomWidth
borderCollapse
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderSpacing
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
External links:
border-color (MSDN)
border-color (Mozilla Developer Center)
border-color (Safari Reference Library)
border-color (W3C)
border-color (Mozilla Developer Center)
border-color (Safari Reference Library)
border-color (W3C)
User Contributed Comments