영어 [fɔnt stail] 미국 [fɑnt staəl]
n.
자바스크립트 글꼴 스타일 속성 통사론
기능: 글꼴 스타일을 설정합니다.
구문: Object.style.fontStyle=normal|italic|oblique
자바스크립트 글꼴 스타일 속성 예
<html> <head> <script type="text/javascript"> function setFontStyle() { document.getElementById("p1").style.fontStyle="italic"; } </script> </head> <body> <p id="p1">This is an example paragraph.</p> <input type="button" onclick="setFontStyle()" value="Change font-style" /> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요