In CSS2.1, the
three-dimensional border styles (groove, ridge, inset, and outset) depend on the
corresponding border-color, rather than on color.
Internet Explorer for Windows versions up to and including 7:
?– don??™t support the value hidden
?– don??™t support the value inherit
Box Properties
The Ultimate CSS Reference 232
border-right-width
border-right-width: { thin | medium | thick | length
| inherit } ;
The property border-right-width sets
the width of the border on the
right-hand side of an element using the
values specified.
Value
The property takes a CSS length (px, pt,
em, and so on) or one of the allowed
keywords; percentage values are not
allowed.
Example
This style rule assigns a 2px border width
to the right of paragraphs within the
element with ID "example":
#example p {
border-right-width: 2px;
border-right-style: solid;
}
Negative length values are illegal.
The keyword width values of thin, medium, and thick aren??™t explicitly defined??”their
display will depend on the user agent??”but have the following meaning: thin <=
medium <= thick.
Pages:
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355