CSS Dominant-Baseline Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

The 'dominant-baseline' property is used to determine or re-determine a scaled-baseline-table.

Syntax

dominant-baseline: [value];

Possible values

  • auto
  • use-script
  • no-change
  • reset-size
  • alphabetic
  • hanging
  • ideographic
  • mathematical
  • central
  • middle
  • text-after-edge
  • text-before-edge

Initial Value

Auto

Applies To

Inline-Level elements

Inherited

No

Media

Visual

Example

.class {
  dominant-baseline: central ;
}


View All CSS Properties