August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.tags.tagName.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 tag called tagName.
Listing 7.187 uses the paddingLeft property to set the distance between a line of text and its border.
<html> <script> <!-- Hide //Create a style sheet tag that defines the left padding document.tags.P.borderWidths(10) document.tags.P.paddingLeft = "40"; //Hide End ---> </script> <p>This text has extra padding on the left.</p> </html> |
Read now
Unlock full access