Transform the first letter of each word in an element to uppercase:
document.getElementById("demo").style.textTransform = "capitalize";
Try it Yourself »
The textTransform property sets or returns the capitalization of a text.
This property is used to change the text to uppercase, lowercase or to capitalized.
Property | |||||
---|---|---|---|---|---|
textTransform | Yes | Yes | Yes | Yes | Yes |
Return the textTransform property:
object.style.textTransform
Set the textTransform property:
object.style.textTransform = "none|capitalize|uppercase|lowercase|initial|inherit"
Value | Description |
---|---|
none | No characters are transformed. This is default |
capitalize | The first character of each word is transformed to uppercase |
uppercase | All characters are transformed to uppercase |
lowercase | All characters are transformed to lowercase |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Default Value: | none |
---|---|
Return Value: | A String, representing the transformation of the text in the element |
CSS Version | CSS1 |
Transform all characters in an element to uppercase:
document.getElementById("demo").style.textTransform = "uppercase";
Try it Yourself »
Return the text transformation of an element:
alert(document.getElementById("demo").style.textTransform);
Try it Yourself »
CSS tutorial: CSS Text
CSS reference: text-transform property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!