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

จะตั้งค่ากรณีสำหรับข้อความใน CSS ได้อย่างไร


ใช้การแปลงข้อความ คุณสมบัติเพื่อกำหนดกรณีสำหรับข้อความ ค่าที่เป็นไปได้คือ none, capitalize, uppercase, lowercase.

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อกำหนดกรณีสำหรับข้อความ:

<html>
   <head>
   </head>
   <body>
      <p style = "text-transform:capitalize;">
         This will be capitalized
      </p>

      <p style = "text-transform:uppercase;">
         This will be in uppercase
      </p>

      <p style = "text-transform:lowercase;">
         This will be in lowercase
      </p>
   </body>
</html>