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