Thuộc tính chuyển đổi văn bản CSS cho phép chúng tôi đặt cách viết hoa văn bản cho một phần tử. Nó có thể chấp nhận các giá trị sau:viết hoa, viết thường, viết hoa, full-width, full-size-kana và không có.
Cú pháp
Cú pháp của thuộc tính chuyển đổi văn bản CSS như sau -
Selector { text-transform: /*value*/ }
Ví dụ
Các ví dụ sau minh họa thuộc tính chuyển đổi văn bản CSS -
<!DOCTYPE html> <html> <head> <style> h2 { text-transform: uppercase; } .demo { text-transform: lowercase; } q { text-transform: capitalize; font-style: italic; } </style> </head> <body> <h2>WordPress</h2> <q>WordPress is open source software you can use to create a beautiful website, blog, or app.</q> <p class="demo">34% of the web uses WordPress, from hobby blogs to the biggest news sites online.</p> </body> </html>
Đầu ra
Điều này cho kết quả sau -
Ví dụ
<!DOCTYPE html> <html> <head> <style> div { background-color: lightgreen; margin: auto; text-align: center; } p { width: 80%; background-color: aquamarine; text-decoration: uppercase; } article { background-color: darksalmon; text-transform: lowercase; } </style> </head> <body> <h2>What is Magento?</h2> <div> <p>Magento is an open-source e-commerce platform written in PHP.</p> <article> Build your own branded store powered by Magento Commerce and Amazon. Choose from 4,600 themes and extensions in the Magento Marketplace as well as more than 300,000 Magento developers. </article> </div> </body> </html>
Đầu ra
Điều này cho kết quả sau -