![]() Capt. Horatio T.P. Webb |
[IE 10 or greater]
Parks -- SPRING 2014 |
HTML 5 -- Border | ||||||
border | border-color | border-width | border-style | border-radius | box-shadow | |
The "box model" describes how the: height; width; margin; border; and padding as they relate to content presentation. The "padding" and "margin" are transparent. "height" and "width" refer to the content inside the padding. "background-color" applies to "padding" and the box contents.
margin-left (transparent) ↓ |
↑ margin-top (transparent) ↓ |
margin-right (transparent) ↓ |
|||||||||||
|
|||||||||||||
↑ margin-bottom (transparent) ↓ |
The traditional (pre-CSS3) border model is relatively simple albiet lengthy. It consists of the following
Using the composite version, the style attribute would appear as:
<tag style="border:border style value border color value border width value;"...>
Alternatively you can also specify each attribute separately:
<tag style="border-style:border style value;border-color:border color value;border-width:border width value;"...>
The four borders (top, right, bottom and left can be specified specifically by:
Note: this is a composite property for all four border styles (i.e., border-top-style, border-right-style, border-bottom-style, border-left-style).
Note: this is a composite property for all four border-widths (i.e., border-top-width, border-right-width, border-bottom-width, border-left-width).
border border is a composite property that allows one to specify any or all of the three border properties:
The values for these three border properties are:
color formats are:
click here for the 16 CSS 1 Color Names (17 if you count orange)
click here for the 147 CSS 2 Color Names
style values are: none | dotted | dashed | solid | double | groove | ridge | inset | outset
width values are: thin | medium | thick | length (i.e., some integer typically followed by "px")
Each of the four borders and three properties can be specified directly by using: