Border Properties
Administrator, TheScripts.com
Border Parameters
border-top-width
Allows you to set the width of the top border of the element. This parameter has the same background as its parent element, but can have its own foreground as specified by the border-color, or border-style parameter.
H3 {border-top-width: 2px;}
border-right-width
Allows you to set the width of the right border of the element. This parameter has the same background as its parent element, but can have its own foreground as specified by the border-color, or border-style parameter.
H3 {border-right-width: 2px;}
border-bottom-width
Allows you to set the width of the bottom border of the element. This parameter has the same background as its parent element, but can have its own foreground as specified by the border-color, or border-style parameter.
H3 {border-bottom-width: 2px;}
border-left-width
Allows you to set the width of the left border of the element. This parameter has the same background as its parent element, but can have its own foreground as specified by the border-color, or border-style parameter.
H3 {border-left-width: 2px;}
border-width
Allows you to set the width of the general border width of the element. This parameter has the same background as its parent element, but can have its own foreground as specified by the border-color, or border-style parameter.
H3 {border-width: 2px;}
border-color
Allows you to set the foreground of the general border of the element. This parameter has the same background as its parent element.
H3 {border-color: 000000; border-style: solid;}
border-style
Allows you to set the style of the border using the color set by the border-color parameter.
H3 {border-style: solid; border-color: 000000;}
border-top
The quick method to setting the style, width, and color of the top border of the parameters element.
H3 {border-top: 2px dotted 000000;}
border-right
The quick method to setting the style, width, and color of the right border of the parameters element.
H3 {border-right: 2px solid 000000;}
border-bottom
The quick method to setting the style, width, and color of the bottom border of the parameters element.
H3 {border-bottom: 2px dashed C0C0C0;}
border-left
The quick method to setting the style, width, and color of the left border of the parameters element.
H3 {border-left: 2px grooved 999333;}
border
The quick method to setting the style, width, and color of the overall border of the parameters element.
H3 {border: 2px dashed 669966;}
