textTransform

object textTransform extends Style[String]

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.

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.

MDN

class Style[String]
class Key
class Object
trait Matchable
class Any

Value members

Concrete fields

lazy val capitalize: StyleSetter

Forces the first letter of each word to be converted to uppercase. Other characters are unchanged.

Forces the first letter of each word to be converted to uppercase. Other characters are unchanged.

MDN

lazy val lowercase: StyleSetter

Forces all characters to be converted to lowercase.

Forces all characters to be converted to lowercase.

MDN

lazy val none: StyleSetter

Prevents the case of all characters from being changed

Prevents the case of all characters from being changed

MDN

lazy val uppercase: StyleSetter

Forces all characters to be converted to uppercase.

Forces all characters to be converted to uppercase.

MDN

Inherited fields

override val name: String
Inherited from
Style