英 [fɔnt weit] 美 [fɑnt wet]
[계산][WIN] 글꼴 greyscale
자바스크립트 글꼴Weight 속성 통사론
기능: 문자 굵기를 설정합니다.
구문: Object.style.fontWeight=value
자바스크립트 글꼴Weight 속성 예
<html> <head> <script type="text/javascript"> function setFontWeight() { document.getElementById("p1").style.fontWeight="900"; } </script> </head> <body> <p id="p1">This is an example paragraph.</p> <p>This is another example paragraph.</p> <input type="button" onclick="setFontWeight()" value="Display bold text" /> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요