August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.ids.idName.paddingLeftThe paddingLeft 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.129 uses the paddingLeft property to set the distance between a line of text and its border.
<html> <script> <!-- Hide //Create a style sheet id that defines the left padding document.classes.FORMAT.all.borderWidths(10) document.ids.PAD.paddingLeft = "40"; //Hide End ---> </script> <p CLASS=FORMAT ID=PAD>This text has extra padding on the left.</p> </html> |
Read now
Unlock full access