HTML DOM letterSpacing ÊôÐÔ
¶¨ÒåºÍÓ÷¨
letterSpacing ÊôÐÔÉèÖÃ×Ö·ûÖ®¼äµÄ¿Õ°×¡£
Óï·¨£º
Object.style.letterSpacing=normal|length
¿ÉÄܵÄÖµ
Öµ | ÃèÊö |
---|---|
normal | ĬÈÏ¡£¶¨Òå×Ö·û¼äµÄ±ê×¼¿Õ¼ä¡£ |
length | ¶¨Òå×Ö·û¼äµÄ¹Ì¶¨¿Õ¼ä¡£ |
ʵÀý
±¾Àý¸Ä±ä×Ö·ûÖ®¼äµÄ¿Õ°×£º
<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>