August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.tags.tagName.borderBottomWidth
The borderBottomWidth property specifies the width of the bottom border of an element as associated with the tag called tagName.
Listing 7.165 uses the borderBottomWidth property to set the size of the bottom border that surrounds a text header. Notice that only the bottom portion of the border is shown.
<html> <script> <!-- Hide //Create a style sheet id that creates a bottom border document.tags.H2.borderBottomWidth = "10"; //Hide End ---> </script> <h2>This text has a bottom border</h2> </html> |
Read now
Unlock full access