The appearance of the borders may vary between user agents (within limits). The
algorithms that define the relationship between the colors used to achieve an effect
(for example, groove, ridge, inset, and outset) are not explicitly defined in the
CSS specifications, so the colors may vary between user agents. 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 inherit.
border-bottom-style
border-bottom-style: { none | hidden | dotted |
dashed | solid | double | groove | ridge | inset |
outset | inherit } ;
SPEC
version initial inherited
CSS1, 2.1 none NO
BROWSER SUPPORT
Op9.2+ Saf1.3+ FF1+ IE5.5+
FULL FULL FULL BUGGY
The property border-bottom-style sets
the style of the bottom border on an
element. Borders are placed on top of
the element??™s background.
Value
none none means no border will
show, and the computed
Example
This style rule assigns a solid border to the
bottom edge of paragraphs within the
element with ID "example":
#example p {
border-bottom-style: solid;
}
border-width is zero.
Pages:
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362