August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.tags.tagName.borderStyleThe borderStyle property specifies the style of the border that surrounds an element as associated with the tag called tagName.
The borderStyle property can be assigned one of the following values: none, solid, double, inset, outset, groove, or ridge.
Listing 7.169 uses the borderStyle property to set the border around a text header to a double line.
<html> <script> <!-- Hide //Create a style sheet tag that creates a double border document.tags.H2.borderWidths(10); document.tags.H2.borderColor = "red"; document.tags.H2.borderStyle = "double"; //Hide End ... |
Read now
Unlock full access