Anglais ['letəspeɪsɪŋ] US ['letəspeɪsɪŋ]
Espace entre les caractères
.propriété javascript letterSpacing syntaxe
Fonction : Définissez l'espace entre les caractères.
Syntaxe : Object.style.letterSpacing=normal|length
propriété javascript letterSpacing exemple
<html> <head> <script type="text/javascript"> function changeLetterSpacing() { document.getElementById("p1").style.letterSpacing="3"; document.getElementById("p2").style.letterSpacing="-1"; } </script> </head> <body> <p id="p1">This is an example paragraph.</p> <p id="p2">This is another example paragraph.</p> <input type="button" onclick="changeLetterSpacing()" value="Change letter-spacing" /> </body> </html>
Exécuter l'instance »
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne