padding
Anglais [ˈpædɪŋ] US [ˈpædɪŋ]
n Padding; verbe; non-sens
v., ajouter un coussin (participe présent de pad);
leftAnglais [left] américain [lɛft]
adj Gauche, gauche
n Gauche, gauche [militaire], radical
à gauche;
v. partir (passé et participe passé de partir)pluriel : gauches
propriété javascript paddingLeft syntaxe
Fonction : Définissez le remplissage gauche de l'élément. Définit l'espace entre la bordure de l'élément et son contenu.
Syntaxe : Object.style.paddingLeft=length|%
propriété javascript paddingLeft exemple
<html> <head> <style type="text/css"> p { border: thin dotted #FF0000; } </style> <script type="text/javascript"> function changePadding() { document.getElementById("p1").style.paddingLeft="2cm"; } </script> </head> <body> <input type="button" onclick="changePadding()" value="Change left padding" /> <p id="p1">This is a paragraph</p> </body> </html>
Exécuter l'instance »
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne