Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để đặt kích thước phông chữ của văn bản với JavaScript?

Để đặt kích thước phông chữ, hãy sử dụng fontSize thuộc tính trong JavaScript. Bạn có thể thử chạy đoạn mã sau để đặt kích thước phông chữ của văn bản bằng 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 Family and Size</button>
      
      <script>
         function display() {
            document.getElementById("myID").style.fontFamily = "verdana,sans-serif";
            document.getElementById("myID").style.fontSize = "smaller";
         }
      </script>
      
   </body>
</html>