Open main menu

CDOT Wiki β

Changes

CSS GUIDE BORDER STYLE

507 bytes added, 14:59, 11 December 2006
See Also
== Summary ==
The border-style property sets the style of an element's border. This property must be specified for the border to be visible. Between one and four keywords are specified. If four values are given, they apply to top, right, bottom, and left border style, respectively. If one value is given, it applies to all sides. If two or three values are given, the missing values are taken from the opposite side.
 
'''Inherited: No'''
== Syntax ==
table {border-style: dotted}all four borders will be dotted table {border-style: dotted dashed}top and bottom border will be dotted, left an right border will be dashed  table {border-style: dotted dashed solid}top border will be dotted, left and right border will be dashed, bottom border will be solid table {border-style: dotted dashed solid double}top border will be dotted, right border will be dashed, bottom border will be solid, left border will be doublevalue optionalvalue2 optionalvalue3 optionalvalue4
== Legal Values ==
<table border = "1" width="350">
 
<tr>
<th>Value</th>
<td>Defines a dashed border</td>
</tr>
 
<tr>
<td>solid</td>
<td>Defines a solid border</td>
</tr>
 
<tr>
<td>double</td>
<td>Defines two borders. The width of the two borders are the same as the border-width value</td>
</tr>
 
<tr>
<td>groove</td>
<td>Defines a 3D grooved border. The effect depends on the border-color value</td>
</tr>
 
<tr>
<td>ridge</td>
<td>Defines a 3D ridged border. The effect depends on the border-color value</td>
</tr>
<tr><td>groove</td><td>Defines a 3D grooved border. The effect depends on the border-color value</td></tr>
<tr>
<td>inset</td>
<td>Defines a 3D inset border. The effect depends on the border-color value</td>
</tr>
</tr>
<tr>
<td>outset</td>
<td>Defines a 3D outset border. The effect depends on the border-color value</td>
</tr>
 
</table>
== Usage Examples ==
 
<pre>p{border-style: dotted}</pre>
All four borders will be dotted.
<pre>p{border-style: dotted dashed}</pre>
Top and bottom border will be dotted, left an right border will be dashed.
<pre>p{border-style: dotted dashed solid}</pre>
Top border will be dotted, left and right border will be dashed, bottom border will be solid.
<pre>p{border-style: dotted dashed solid double}</pre>
Top border will be dotted, right border will be dashed, bottom border will be solid, left border will be double.
== Notes ==
== Specification Conformance ==
CSS1 Conformance: Browsers are allowed to treat values of dotted, dashed, groove, ridge, inset, outset and double as the value solid.
== Browser Compatibility ==
 
Browser Compatibility: IE 4+ / NN 4+
== See Also ==
 
[http://zenit.senecac.on.ca/wiki/index.php?title=CSS_GUIDE_BORDER_STYLE&action=edit&section=9 Border Style Cascade Style Sheets Properties]
<br>
[http://www.w3schools.com/css/pr_border-style.asp CSS Border-style property]
<br>
[http://www.zvon.org/xxl/css1Reference/Output/property_border-style.html Borderstyle CSS1 Reference]
1
edit