
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Convert Text to Uppercase with CSS
To convert text to uppercase with CSS, use the text-transform property with value uppercase.
Example
You can try to run the following code to convert text to uppercase:
<html> <head> </head> <body> <p>Normal Text</p> <p style = "text-transform:uppercase;"> Normal Text! This will be in uppercase! </p> </body> </html>
Advertisements