border property
Sets 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 |
JavaScript page for this property: border. You can find other example(s) there. |
Possible values:
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?
|
Supported by tags:
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-bottom
border-bottom-color
border-bottom-style
border-bottom-width
border-collapse
border-color
border-left
border-left-color
border-left-style
border-left-width
border-right
border-right-color
border-right-style
border-right-width
border-spacing
border-style
border-top
border-top-color
border-top-style
border-top-width
border-width
margin
padding
border-bottom-color
border-bottom-style
border-bottom-width
border-collapse
border-color
border-left
border-left-color
border-left-style
border-left-width
border-right
border-right-color
border-right-style
border-right-width
border-spacing
border-style
border-top
border-top-color
border-top-style
border-top-width
border-width
margin
padding
External links:
User Contributed Comments