Text

The Text component displays textual information in a number of optional styles and variants.

You can learn more about this component in the Working with Text article.

Also note that variants of the Text component are also mapped to HtmlTag components. See the variant section to check which variant maps to which HtmlTag.

Custom Variants

In addition to the predefined variants, the Text component supports custom variant names that can be styled using theme variables. This allows you to create application-specific text styles without modifying the component itself.

When you use a custom variant name (one not in the predefined list), the component automatically applies theme variables following the naming pattern: {cssProperty}-Text-{variantName}.

<App>
  <Theme 
    textColor-Text-brandTitle="rgb(41, 128, 185)"
    fontSize-Text-brandTitle="28px"
    fontWeight-Text-brandTitle="bold"
    letterSpacing-Text-brandTitle="2px"
  >
    <Text variant="brandTitle">
      Welcome to Our Application
    </Text>
  </Theme>
</App>
Example: custom variants
<App>
  <Theme 
    textColor-Text-brandTitle="rgb(41, 128, 185)"
    fontSize-Text-brandTitle="28px"
    fontWeight-Text-brandTitle="bold"
    letterSpacing-Text-brandTitle="2px"
  >
    <Text variant="brandTitle">
      Welcome to Our Application
    </Text>
  </Theme>
</App>

In this example, the custom variant brandTitle is styled using theme variables. Any CSS text property can be configured, including textColor, fontSize, fontWeight, fontFamily, textDecoration*, lineHeight, backgroundColor, textTransform, letterSpacing, wordSpacing, textShadow, and more.

Behaviors

This component supports the following behaviors:

BehaviorProperties
Animationanimation, animationOptions
Bookmarkbookmark, bookmarkLevel, bookmarkTitle, bookmarkOmitFromToc
Component Labellabel, labelPosition, labelWidth, labelBreak, required, enabled, shrinkToLabel, style, readOnly
Publish/SubscribesubscribeToTopic
Tooltiptooltip, tooltipMarkdown, tooltipOptions
Styling Variantvariant

Properties

breakMode

default: "normal"

This property controls how text breaks into multiple lines. normal uses standard word boundaries, word breaks long words to prevent overflow, anywhere breaks at any character, keep prevents word breaking, and hyphenate uses automatic hyphenation. When not specified, uses the default browser behavior or theme variables.

Available values:

ValueDescription
normalUses standard word boundaries for breaking (default)
wordBreaks long words when necessary to prevent overflow
anywhereBreaks at any character if needed to fit content
keepPrevents breaking within words entirely
hyphenateUses automatic hyphenation when breaking words
<App>
  <VStack gap="16px">
    <VStack gap="8px">
      <Text variant="strong">breakMode="normal" (default)</Text>
      <Text
        width="150px"
        backgroundColor="lightblue"
        padding="8px"
        breakMode="normal">
        This text uses standardwordbreaking at natural boundaries 
        like spaces and hyphens.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="word"</Text>
      <Text
        width="150px"
        backgroundColor="lightgreen"
        padding="8px"
        breakMode="word">
        This text will breakverylongwordswhenneeded to prevent 
        overflow while preserving readability.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="anywhere"</Text>
      <Text
        width="150px"
        backgroundColor="lightyellow"
        padding="8px"
        breakMode="anywhere">
        Thistext willbreakanywhereif neededtofit thecontainer 
        eveninthe middleofwords.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="keep"</Text>
      <Text
        width="150px"
        backgroundColor="lightcoral"
        padding="8px"
        breakMode="keep">
        This text will keep verylongwords intact and prevent 
        breaking within words entirely.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="hyphenate"</Text>
      <Text
        width="150px"
        backgroundColor="lavender"
        padding="8px"
        breakMode="hyphenate"
        lang="en">
        This text uses automatic hyphenation for 
        supercalifragilisticexpialidocious words.
      </Text>
    </VStack>
  </VStack>
</App>
Example: breakMode
<App>
  <VStack gap="16px">
    <VStack gap="8px">
      <Text variant="strong">breakMode="normal" (default)</Text>
      <Text
        width="150px"
        backgroundColor="lightblue"
        padding="8px"
        breakMode="normal">
        This text uses standardwordbreaking at natural boundaries 
        like spaces and hyphens.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="word"</Text>
      <Text
        width="150px"
        backgroundColor="lightgreen"
        padding="8px"
        breakMode="word">
        This text will breakverylongwordswhenneeded to prevent 
        overflow while preserving readability.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="anywhere"</Text>
      <Text
        width="150px"
        backgroundColor="lightyellow"
        padding="8px"
        breakMode="anywhere">
        Thistext willbreakanywhereif neededtofit thecontainer 
        eveninthe middleofwords.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="keep"</Text>
      <Text
        width="150px"
        backgroundColor="lightcoral"
        padding="8px"
        breakMode="keep">
        This text will keep verylongwords intact and prevent 
        breaking within words entirely.
      </Text>
    </VStack>
    
    <VStack gap="8px">
      <Text variant="strong">breakMode="hyphenate"</Text>
      <Text
        width="150px"
        backgroundColor="lavender"
        padding="8px"
        breakMode="hyphenate"
        lang="en">
        This text uses automatic hyphenation for 
        supercalifragilisticexpialidocious words.
      </Text>
    </VStack>
  </VStack>
</App>

ellipses

default: true

This property indicates whether ellipses should be displayed when the text is cropped (true) or not (false).

<App>
  <VStack width="120px">
    <Text
      backgroundColor="cyan"
      color="black"
      maxLines="1"
      ellipses="false">
      Though this long text does is about to crop!
    </Text>
    <Text
      backgroundColor="cyan"
      color="black"
      maxLines="1">
      Though this long text does is about to crop!
    </Text>
  </VStack>
</App>
Example: ellipses
<App>
  <VStack width="120px">
    <Text
      backgroundColor="cyan"
      color="black"
      maxLines="1"
      ellipses="false">
      Though this long text does is about to crop!
    </Text>
    <Text
      backgroundColor="cyan"
      color="black"
      maxLines="1">
      Though this long text does is about to crop!
    </Text>
  </VStack>
</App>

maxLines

This property determines the maximum number of lines the component can wrap to. If there is no space to display all the contents, the component displays up to as many lines as specified in this property. When the value is not defined, there is no limit on the displayed lines.

<App>
  <Text
    maxWidth="120px"
    backgroundColor="cyan"
    color="black"
    value="A long text that will likely overflow"
    maxLines="2" />
</App>
Example: maxLines
<App>
  <Text
    maxWidth="120px"
    backgroundColor="cyan"
    color="black"
    value="A long text that will likely overflow"
    maxLines="2" />
</App>

overflowMode

default: "not specified"

This property controls how text overflow is handled. none prevents wrapping and shows no overflow indicator, ellipsis shows ellipses when text is truncated, scroll forces single line with horizontal scrolling, and flow allows multi-line wrapping with vertical scrolling when needed (ignores maxLines). When not specified, uses the default text behavior.

Available values:

ValueDescription
noneNo wrapping, text stays on a single line with no overflow indicator (ignores maxLines)
ellipsisTruncates with an ellipsis (default)
scrollForces single line with horizontal scrolling when content overflows (ignores maxLines)
flowAllows text to wrap into multiple lines with vertical scrolling when container height is constrained (ignores maxLines)

Here are a few examples.

<App>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    maxLines="2">
    This is a very long text that will be clipped with an 
    ellipsis indicator when it exceeds the specified lines.
  </Text>
</App>
Example: overflowMode not specified (maxlines='2')
<App>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    maxLines="2">
    This is a very long text that will be clipped with an 
    ellipsis indicator when it exceeds the specified lines.
  </Text>
</App>
<App>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="none"
    maxLines="2">
    This is a very long text that will be clipped cleanly without 
    any overflow indicator when it exceeds the specified lines.
  </Text>
</App>
overflowMode='none' (maxlines='2')
<App>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="none"
    maxLines="2">
    This is a very long text that will be clipped cleanly without 
    any overflow indicator when it exceeds the specified lines.
  </Text>
</App>
<App>
  <Text variant="strong">overflowMode="ellipsis" (default, maxlines='1')</Text>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="ellipsis"
    maxLines="1">
    This is a very long text that will show ellipsis when it 
    overflows the container width.
  </Text>

  <Text variant="strong">overflowMode="ellipsis" (default, maxlines='2')</Text>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="ellipsis"
    maxLines="2">
    This is a very long text that will show ellipsis when it 
    overflows the container width.
  </Text>
</App>
overflowMode='ellipsis'
<App>
  <Text variant="strong">overflowMode="ellipsis" (default, maxlines='1')</Text>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="ellipsis"
    maxLines="1">
    This is a very long text that will show ellipsis when it 
    overflows the container width.
  </Text>

  <Text variant="strong">overflowMode="ellipsis" (default, maxlines='2')</Text>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="ellipsis"
    maxLines="2">
    This is a very long text that will show ellipsis when it 
    overflows the container width.
  </Text>
</App>
<App>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="scroll">
    This is a very long text that will enable horizontal scrolling 
    when it overflows the container width.
  </Text>
</App>
overflowMode='scroll'
<App>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="scroll">
    This is a very long text that will enable horizontal scrolling 
    when it overflows the container width.
  </Text>
</App>
<App>
  <Text variant="strong">overflowMode="flow"</Text>
  <Text
    width="200px"
    height="100px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="flow">
    This is a very long text that will wrap to multiple lines and show 
    a vertical scrollbar when the content exceeds the container height. 
    This mode ignores maxLines and allows unlimited text wrapping with 
    vertical scrolling when needed.
  </Text>
  
  <Text variant="strong">overflowMode="flow" (no height constraint)</Text>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="flow">
    This is a very long text that demonstrates flow mode without a 
    height constraint. The text will wrap to multiple lines naturally 
    and the container will grow to accommodate all the content. No 
    scrollbar will appear since there's no height limitation - the text 
    flows freely across as many lines as needed.
  </Text>
</App>
overflowMode='flow'
<App>
  <Text variant="strong">overflowMode="flow"</Text>
  <Text
    width="200px"
    height="100px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="flow">
    This is a very long text that will wrap to multiple lines and show 
    a vertical scrollbar when the content exceeds the container height. 
    This mode ignores maxLines and allows unlimited text wrapping with 
    vertical scrolling when needed.
  </Text>
  
  <Text variant="strong">overflowMode="flow" (no height constraint)</Text>
  <Text
    width="200px"
    backgroundColor="lightblue"
    padding="8px"
    overflowMode="flow">
    This is a very long text that demonstrates flow mode without a 
    height constraint. The text will wrap to multiple lines naturally 
    and the container will grow to accommodate all the content. No 
    scrollbar will appear since there's no height limitation - the text 
    flows freely across as many lines as needed.
  </Text>
</App>

preserveLinebreaks

default: false

This property indicates if linebreaks should be preserved when displaying text.

<App>
  <HStack>
    <Text
      width="250px"
      backgroundColor="cyan"
      color="black"
      preserveLinebreaks="true"
      value="(preserve) This long text

      with several line breaks

              does not fit into a viewport with a 200-pixel width." />
    <Text
      width="250px"
      backgroundColor="cyan"
      color="black"
      preserveLinebreaks="false"
      value="(don't preserve) This long text

      with several line breaks

              does not fit into a viewport with a 200-pixel width." />
  </HStack>
</App>
Example: preserveLinebreaks
<App>
  <HStack>
    <Text
      width="250px"
      backgroundColor="cyan"
      color="black"
      preserveLinebreaks="true"
      value="(preserve) This long text

      with several line breaks

              does not fit into a viewport with a 200-pixel width." />
    <Text
      width="250px"
      backgroundColor="cyan"
      color="black"
      preserveLinebreaks="false"
      value="(don't preserve) This long text

      with several line breaks

              does not fit into a viewport with a 200-pixel width." />
  </HStack>
</App>

Note: Remember to use the value property of the Text. Linebreaks are converted to spaces when nesting the text inside the Text component.

value

The text to be displayed. This value can also be set via nesting the text into the Text component.

<App>
  <Text value="An example text" />
  <Text>An example text</Text>
</App>
Example: value
<App>
  <Text value="An example text" />
  <Text>An example text</Text>
</App>

variant

An optional string value that provides named presets for text variants with a unique combination of font style, weight, size, color, and other parameters. If not defined, the text uses the current style of its context. In addition to predefined variants, you can specify custom variant names and style them using theme variables with the pattern {cssProperty}-Text-{variantName} (e.g., textColor-Text-brandTitle, fontSize-Text-highlight). See the documentation for a complete list of supported CSS properties.

Available values:

ValueDescription
abbrRepresents an abbreviation or acronym
captionRepresents the caption (or title) of a table
citeIs used to mark up the title of a cited work
codeRepresents a line of code
deletedRepresents text that has been deleted
emMarks text to stress emphasis
inheritRepresents text that inherits the style from its parent element
insertedRepresents a range of text that has been added to a document
keyboardRepresents a span of text denoting textual user input from a keyboard or voice input
markedRepresents text which is marked or highlighted for reference or notation
monoText using a mono style font family
paragraphRepresents a paragraph
placeholderText that is mostly used as the placeholder style in input controls
sampleRepresents sample (or quoted) output from a computer program
secondaryRepresents a bit dimmed secondary text
smallRepresents side-comments and small print
subSpecifies inline text as subscript
strongContents have strong importance
subheadingIndicates that the text is the subtitle in a heading
subtitleIndicates that the text is the subtitle of some other content
supSpecifies inline text as superscript
tableheadingIndicates that the text is a table heading
titleIndicates that the text is the title of some other content
varRepresents the name of a variable in a mathematical expression
Example: variant

HtmlTag Mappings

The table below indicates which Text variant maps to which HtmlTag component.

VariantComponent
abbrabbr
citecite
codecode
deleteddel
insertedins
keyboardkbd
markedmark
samplesamp
subsub
supsup
varvar
strongstrong
emem
paragraphp

Events

contextMenu

This event is triggered when the Text is right-clicked (context menu).

Signature: contextMenu(event: MouseEvent): void

  • event: The mouse event object.

Exposed Methods

hasOverflow

Returns true when the displayed text overflows its container boundaries.

Signature: hasOverflow(): boolean

Styling

Custom Variant Theme Variables

When using custom variants, you can style them using theme variables with the naming pattern {propertyName}-Text-{variantName}. The following CSS properties are supported:

Theme Variable NameDescriptionExample Value
textColor-Text-{variant}Text colorrgb(255, 0, 0), #ff0000, red
fontFamily-Text-{variant}Font family"Arial, sans-serif", monospace
fontSize-Text-{variant}Font size16px, 1.5rem, large
fontStyle-Text-{variant}Font stylenormal, italic, oblique
fontWeight-Text-{variant}Font weightnormal, bold, 700
fontStretch-Text-{variant}Font stretchnormal, expanded, condensed
textDecorationLine-Text-{variant}Decoration line typenone, underline, overline, line-through
textDecorationColor-Text-{variant}Decoration colorrgb(255, 0, 0), currentColor
textDecorationStyle-Text-{variant}Decoration stylesolid, dashed, dotted, wavy
textDecorationThickness-Text-{variant}Decoration thickness2px, from-font, auto
textUnderlineOffset-Text-{variant}Underline offset5px, 0.2em, auto
lineHeight-Text-{variant}Line height1.5, 24px, normal
backgroundColor-Text-{variant}Background colorrgb(255, 255, 0), transparent
textTransform-Text-{variant}Text transformationnone, uppercase, lowercase, capitalize
letterSpacing-Text-{variant}Space between letters1px, 0.1em, normal
wordSpacing-Text-{variant}Space between words5px, 0.2em, normal
textShadow-Text-{variant}Text shadow2px 2px 4px rgba(0,0,0,0.5)
textIndent-Text-{variant}First line indentation20px, 2em, 0
textAlign-Text-{variant}Horizontal alignmentleft, center, right, justify
textAlignLast-Text-{variant}Last line alignmentleft, center, right, justify
wordBreak-Text-{variant}Word breaking behaviornormal, break-all, keep-all
wordWrap-Text-{variant}Word wrappingnormal, break-word
direction-Text-{variant}Text directionltr, rtl
writingMode-Text-{variant}Writing modehorizontal-tb, vertical-rl, vertical-lr
lineBreak-Text-{variant}Line breaking rulesauto, normal, strict, loose
<App>
  <Theme 
    textColor-Text-highlight="rgb(255, 193, 7)"
    fontWeight-Text-highlight="bold"
    backgroundColor-Text-highlight="rgba(0, 0, 0, 0.8)"
    padding-Text-highlight="4px 8px"
    textShadow-Text-highlight="0 2px 4px rgba(0,0,0,0.5)"
  >
    <Text variant="highlight">Important Notice</Text>
    <Text variant="highlight">This is Important Too</Text>
  </Theme>
</App>
Example: custom variant styles
<App>
  <Theme 
    textColor-Text-highlight="rgb(255, 193, 7)"
    fontWeight-Text-highlight="bold"
    backgroundColor-Text-highlight="rgba(0, 0, 0, 0.8)"
    padding-Text-highlight="4px 8px"
    textShadow-Text-highlight="0 2px 4px rgba(0,0,0,0.5)"
  >
    <Text variant="highlight">Important Notice</Text>
    <Text variant="highlight">This is Important Too</Text>
  </Theme>
</App>

Theme Variables

VariableDefault Value (Light)Default Value (Dark)
backgroundColor-Textnonenone
backgroundColor-Text-codergb(from $color-surface-100 r g b / 0.4)rgb(from $color-surface-100 r g b / 0.4)
backgroundColor-Text-keyboardrgb(from $color-surface-100 r g b / 0.4)rgb(from $color-surface-100 r g b / 0.4)
backgroundColor-Text-markedrgb(from $color-primary-200 r g b / 0.4)rgb(from $color-primary-400 r g b / 0.4)
borderColor-Text-code$color-surface-100$color-surface-100
borderColor-Text-keyboard$color-surface-300$color-surface-300
borderRadius-Text$borderRadius$borderRadius
borderRadius-Text-code4px4px
borderRadius-Text-keyboardnonenone
borderStyle-Textsolidsolid
borderStyle-Text-codesolidsolid
borderStyle-Text-keyboardnonenone
borderWidth-Text$space-0$space-0
borderWidth-Text-code1px1px
borderWidth-Text-keyboard1px1px
direction-Textnonenone
fontFamily-Text$fontFamily$fontFamily
fontFamily-Text-code$fontFamily-monospace$fontFamily-monospace
fontFamily-Text-codefence$fontFamily-monospace$fontFamily-monospace
fontFamily-Text-keyboard$fontFamily-monospace$fontFamily-monospace
fontFamily-Text-mono$fontFamily-monospace$fontFamily-monospace
fontFamily-Text-sample$fontFamily-monospace$fontFamily-monospace
fontSize-Text$fontSize$fontSize
fontSize-Text-code$fontSize-sm$fontSize-sm
fontSize-Text-codefence$fontSize-code$fontSize-code
fontSize-Text-keyboard$fontSize-sm$fontSize-sm
fontSize-Text-paragraphnonenone
fontSize-Text-placeholder$fontSize-xs$fontSize-xs
fontSize-Text-sample$fontSize-sm$fontSize-sm
fontSize-Text-secondary$fontSize-sm$fontSize-sm
fontSize-Text-small$fontSize-sm$fontSize-sm
fontSize-Text-sub$fontSize-xs$fontSize-xs
fontSize-Text-subheading$fontSize-H6$fontSize-H6
fontSize-Text-subtitle$fontSize-xl$fontSize-xl
fontSize-Text-sup$fontSize-xs$fontSize-xs
fontSize-Text-tableheading$fontSize-H6$fontSize-H6
fontSize-Text-title$fontSize-2xl$fontSize-2xl
fontStretch-Textnonenone
fontStyle-Textnonenone
fontStyle-Text-citeitalicitalic
fontStyle-Text-emitalicitalic
fontStyle-Text-markednonenone
fontStyle-Text-placeholdernonenone
fontStyle-Text-subheadingnonenone
fontStyle-Text-varitalicitalic
fontVariant-Textnonenone
fontWeight-Text$fontWeight-normal$fontWeight-normal
fontWeight-Text-abbr$fontWeight-bold$fontWeight-bold
fontWeight-Text-keyboard$fontWeight-bold$fontWeight-bold
fontWeight-Text-markednonenone
fontWeight-Text-placeholdernonenone
fontWeight-Text-strong$fontWeight-bold$fontWeight-bold
fontWeight-Text-subheading$fontWeight-bold$fontWeight-bold
fontWeight-Text-tableheading$fontWeight-bold$fontWeight-bold
letterSpacing-Textnonenone
letterSpacing-Text-caption0.05rem0.05rem
letterSpacing-Text-subheading0.04em0.04em
lineBreak-Textnonenone
lineHeight-Textnonenone
lineHeight-Text-codefence1.51.5
lineHeight-Text-markednonenone
marginBottom-Textnonenone
marginBottom-Text-codenonenone
marginBottom-Text-smallnonenone
marginBottom-Text-tableheading$space-4$space-4
marginLeft-Textnonenone
marginLeft-Text-codenonenone
marginLeft-Text-smallnonenone
marginRight-Textnonenone
marginRight-Text-codenonenone
marginRight-Text-smallnonenone
marginTop-Textnonenone
marginTop-Text-codenonenone
marginTop-Text-smallnonenone
marginTop-Text-tableheading$space-1$space-1
paddingBottom-Text-code2px2px
paddingHorizontal-Text-code$space-0_5$space-0_5
paddingHorizontal-Text-codefence$space-4$space-4
paddingHorizontal-Text-keyboard$space-1$space-1
paddingHorizontal-Text-markednonenone
paddingHorizontal-Text-tableheading$space-1$space-1
paddingVertical-Text-codefence$space-3$space-3
paddingVertical-Text-paragraph$space-1$space-1
textAlign-Textnonenone
textAlignLast-Textnonenone
textColor-Text$textColor$textColor
textColor-Text--hovernonenone
textColor-Text-code--hoverinitialinitial
textColor-Text-codefence$color-surface-900$color-surface-900
textColor-Text-markednonenone
textColor-Text-placeholder$color-surface-500$color-surface-500
textColor-Text-placeholder--hovernonenone
textColor-Text-secondary$textColor-secondary$textColor-secondary
textColor-Text-secondary--hovernonenone
textColor-Text-small--hovernonenone
textColor-Text-subheading$textColor-secondary$textColor-secondary
textColor-Text-subheading--hovernonenone
textDecorationColor-Textnonenone
textDecorationColor-Text-deletednonenone
textDecorationColor-Text-insertednonenone
textDecorationLine-Textnonenone
textDecorationLine-Text-deletedline-throughline-through
textDecorationLine-Text-insertedunderlineunderline
textDecorationStyle-Textnonenone
textDecorationStyle-Text-deletednonenone
textDecorationStyle-Text-insertednonenone
textDecorationThickness-Textnonenone
textDecorationThickness-Text-deletednonenone
textDecorationThickness-Text-insertednonenone
textIndent-Textnonenone
textShadow-Textnonenone
textTransform-Textnonenone
textTransform-Text-abbruppercaseuppercase
textTransform-Text-subheadinguppercaseuppercase
textUnderlineOffset-Textnonenone
verticalAlignment-Textnonenone
verticalAlignment-Text-codenonenone
verticalAlignment-Text-smallnonenone
verticalAlignment-Text-subsubsub
verticalAlignment-Text-supsupersuper
wordBreak-Textnonenone
wordSpacing-Textnonenone
wordWrap-Textnonenone
writingMode-Textnonenone