使用 CSS 將文字轉換為大寫
要使用 CSS 將文字轉換為大寫,請使用值設為 uppercase 的 text-transform 屬性。
舉例
您可以嘗試執行以下程式碼將文字轉換為大寫
<html> <head> </head> <body> <p>Normal Text</p> <p style = "text-transform:uppercase;"> Normal Text! This will be in uppercase! </p> </body> </html>
廣告
要使用 CSS 將文字轉換為大寫,請使用值設為 uppercase 的 text-transform 屬性。
您可以嘗試執行以下程式碼將文字轉換為大寫
<html> <head> </head> <body> <p>Normal Text</p> <p style = "text-transform:uppercase;"> Normal Text! This will be in uppercase! </p> </body> </html>