Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

เพิ่มหรือลดขนาดฟอนต์ที่เป็นตัวหนาหรือสว่างด้วย CSS


คุณสมบัติ font-weight ให้ฟังก์ชันการทำงานเพื่อระบุว่าฟอนต์ตัวหนาแค่ไหน ค่าที่เป็นไปได้อาจเป็นค่าปกติ ตัวหนา ตัวหนากว่า น้ำหนักเบากว่า 100, 200, 300, 400, 500, 600, 700, 800, 900

<html>
   <head>
   </head>
   <body>
      <p style = "font-weight:bold;">This font is bold.</p>
      <p style = "font-weight:bolder;">This font is bolder.</p>
      <p style = "font-weight:400;">This font is 500 weight.</p>
   </body>
</html>