javascript letterSpacing property


  Hasil terjemahan:

Bahasa Inggeris ['letəspeɪsɪŋ] AS ['letəspeɪsɪŋ]

n

javascript letterSpacing propertysintaks

Fungsi: Tetapkan ruang antara aksara.

Sintaks: Object.style.letterSpacing=normal|panjang

javascript letterSpacing propertycontoh

<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>

Run Instance »

Klik butang "Run Instance" untuk melihat instance dalam talian

Rumah

video

Soal Jawab