CSS text-transform Property

You are Here:

CSS text-transform Property

CSS text-transform property specifies how to capitalize an element's text.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-child(3){ text-transform: none; } p:nth-child(5){ text-transform: capitalize; } p:nth-child(7){ text-transform: uppercase; } p:nth-child(9){ text-transform: lowercase; } </style> </head> <body> <h1>CSS text-transform Property</h1> <h2>text-transform: none;</h2> <p>This is a sentence.</p> <h2>text-transform: capitalize;</h2> <p>This is a sentence.</p> <h2>text-transform: uppercase;</h2> <p>This is a sentence.</p> <h2>text-transform: lowercase;</h2> <p>This is a sentence.</p> </body> </html>

Syntax

Using CSS

element{ text-transform: uppercase; }

Using Javascript

object.style.textTransform="uppercase";

Animatable

No, text-transform property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS text-transform property is none.

Property Value

The following table provides a list of values for CSS text-transform property.

ValueExplanation
nonePrevents the case of all characters from being changed.
capitalizeConverts the first character of each word to uppercase.
uppercaseConverts all characters to uppercase.
lowercaseConverts all characters to lowercase.

Using JavaScript

In the following example, we will demonstrate how to change the CSS text-transform property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <body> <h1>CSS text-transform Property</h1> <p>This is a sentence</p> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("p")[0]; function myFunction(){ x.style.textTransform = "uppercase"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author