

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of text-transform property in CSS
The text-transform property is used to capitalize text or convert text to uppercase or lowercase letters.
Example
Possible values are 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>
- Related Questions & Answers
- Usage of transform property with CSS
- Usage of transform-origin property with CSS
- Usage of transform-style property with CSS
- Usage of text-decoration property in CSS
- Usage of text-indent property in CSS
- Usage of text-shadow property in CSS
- Usage of text-align property in CSS
- Usage of CSS visibility property
- Usage of CSS perspective property
- Usage of CSS grid property
- Usage of background property in CSS
- Usage of font property in CSS
- Usage of direction property in CSS
- Usage of color property in CSS
- Usage of border property with CSS
Advertisements