
CSS text-transform property - W3Schools
Definition and Usage The text-transform property controls the capitalization of text. Show demo
text-transform - CSS | MDN
Nov 10, 2025 · The text-transform CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can …
text-transform - CSS-Tricks
Jul 24, 2013 · The text-transform property in CSS controls text case and capitalization. lowercase makes all of the letters in the selected text lowercase. uppercase makes all of the letters in the selected text …
CSS text-transform Property - W3docs
Use the text-transform property which controls capitalization effects of an element's text. See property values and try examples.
CSS Text Transform (With Examples) - Programiz
CSS text-transform property is used to change the case of a text. For example, p { text-transform: capitalize; } Browser Output Here, capitalize is a value of the text-transform property that sets the …
text-transform - CSS Reference
Learn how text-transform works in CSS.
CSS Text Transform Guide
The text-transform property in CSS is used to control the capitalization of text. It can be applied to any text element, allowing you to convert text to uppercase, lowercase, or capitalize the first letter of each …
CSS Style textTransform Property: CSS Text Transform
Feb 17, 2025 · It allows you to transform text to uppercase, lowercase, capitalize each word, or revert to the original case. This property is incredibly useful for maintaining a consistent text style across your …
CSS Text Transformation - W3Schools
The CSS text-transform property is used to control the capitalization of text in an element. It can be used to transform a text into uppercase or lowercase letters, or capitalize the first letter of each word, …
CSS: text-transform property - TechOnTheNet
This CSS tutorial explains how to use the CSS property called text-transform with syntax and examples. The CSS text-transform property defines how to capitalize the text of an element such as uppercase, …