如何在 CSS 中設定文字的大小寫?
使用 text-transform屬性設定文字的大小寫。可能的值: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>
廣告
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP