영어 ['letəspeɛsɑŋ] US ['letəspeɛsɑŋ]
n. 문자 사이의 공백
자바스크립트 letterSpacing 속성 통사론
기능: 문자 사이의 공백을 설정합니다.
구문: Object.style.letterSpacing=normal|length
자바스크립트 letterSpacing 속성 예
<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>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요