Để đặt tất cả các thuộc tính phông chữ, hãy sử dụng JavaScript font bất động sản. Bạn có thể thử chạy đoạn mã sau để đặt tất cả các thuộc tính phông chữ trong một khai báo duy nhất với JavaScript -
Ví dụ
<!DOCTYPE html> <html> <body> <h1>Heading 1</h1> <p id="myID"> This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. </p> <button type="button" onclick="display()">Set Font</button> <script> function display() { document.getElementById("myID").style.font = "italic 15px verdana,sans-serif"; } </script> </body> </html>