

- 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
Convert text to lowercase with CSS
To convert text to lowercase with CSS, use the text-transform property with value lowercase.
Example
You can try to run the following code to convert text to lowercase:
<html> <head> </head> <body> <p>Normal Text</p> <p style = "text-transform:lowercase;"> Normal Text! This will be in lowercase! </p> </body> </html>
- Related Questions & Answers
- Convert text to uppercase with CSS
- Convert spaces to dash and lowercase with PHP
- Underline text with CSS
- Strikethrough text with CSS
- Capitalize text with CSS
- Indent Text with CSS text-indent Property
- C++ program to convert kth character to lowercase
- Text Indentation Working with CSS
- Text Transformation Working with CSS
- Convert string to lowercase or uppercase in Arduino
- Add shadow effects to text with CSS
- How to style text buttons with CSS?
- How to convert Python dictionary keys/values to lowercase?
- Set the text shadow around a text with CSS
- Emphasis text and color with CSS
Advertisements