使用 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>