The CSS text-transform property allows us to set text capitalization for an element. It can accept the following values: capitalize, lowercase, uppercase, full-width, full-size-kana and none.
Syntax
The syntax of CSS text-transform property is as follows −
Selector {
text-transform: /*value*/
}Example
The following examples illustrate CSS text-transform property −
<!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>Output
This gives the following output −

Example
<!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>Output
This gives the following output −
