August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.ids.idName.paddingTopThe paddingTop property specifies the distance between the left border of an element and its content. Using dot notation, the property is associated with the ID called idName.
Listing 7.132 uses the paddingTop property to set the distance between a line of text and its border.
<html> <script> <!-- Hide //Create a style sheet id that defines the top padding document.classes.FORMAT.all.borderWidths(10) document.ids.PAD.paddingTop = "40"; //Hide End ---> </script> <p class=FORMAT id=PAD>This text has extra padding on the top.</p> </html> |
Read now
Unlock full access