CSS Values

  • Type a CSS property name into the box above. The page will automatically update as you type.
  • Add a space after the full property name to avoid multiple results for certain keywords.
  • The first value listed is the initial/default value for that property.
  • Values in angle brackets (e.g. <length>) are linked to the spec, where it describes how they're written.
  • Virtually all CSS properties shown in this reference accept the inherit keyword as a value, but it is omitted to avoid needless repetition.

all

This is a shorthand property that resets all CSS properties. Value can be one of the following:

  • initial
  • default

permalink MDN info W3C info

animation

This is a shorthand property. Values represent:

  • [animation-name] [animation-duration] [animation-timing-function] [animation-delay] [animation-iteration-count] [animation-direction] [animation-fill-mode]

Further info on this property:

The first value parsed as a valid time value is used as "duration", so if you want to include a time value for "delay", you must first declare a duration. Multiple animations are declared using comma-separated value sets.

permalink MDN info W3C info

keyframes

animation-delay

Further info on this property:

Accepts a comma-separated list of delay values to correspond to the animations identified in animation-name and the matching @keyframes at-rules.

permalink MDN info W3C info

direction

  • ltr
  • rtl

permalink MDN info W3C info

animation-direction

  • normal
  • reverse
  • alternate
  • alternate-reverse

Further info on this property:

Accepts a comma-separated list of direction values to correspond to the animations identified in animation-name and the matching @keyframes at-rules.

permalink MDN info W3C info

animation-duration

Further info on this property:

Accepts a comma-separated list of time values to correspond to the animations identified in animation-name and the matching @keyframes at-rules.

permalink MDN info W3C info

animation-fill-mode

  • none
  • forwards
  • backwards
  • both

Further info on this property:

Accepts a comma-separated list of fill mode values to correspond to the animations identified in animation-name and the matching @keyframes at-rules.

permalink MDN info W3C info

animation-iteration-count

Further info on this property:

Accepts a comma-separated list of iteration counts to correspond to the animations identified in animation-name and the matching @keyframes at-rules.

permalink MDN info W3C info

animation-name

  • none
  • [ custom identifier ]

Further info on this property:

Accepts a comma-separated list of animations and must correspond to a name given in any keyframes at-rule. The "custom identifier" is chosen by the developer, similar to how variable or function names are defined in JavaScript. This custom identifier must match an identifier used in an @keyframes at-rule.

permalink MDN info W3C info

animation-timing-function

Further info on this property:

Accepts a comma-separated list of timing functions to correspond to the animations identified in animation-name and the matching @keyframes at-rules.

permalink MDN info W3C info

animation-play-state

  • running
  • paused

Further info on this property:

Accepts a comma-separated list of play state values to correspond to the animations identified in animation-name and the matching @keyframes at-rules.

permalink MDN info W3C info

visibility

  • visible
  • hidden
  • collapse

permalink MDN info W3C info

backface-visibility

  • visible
  • hidden

permalink MDN info W3C info

background

This is a shorthand property. Values represent:

  • [background-color] [background-image] [background-repeat] [background-attachment] [background-position] / [ background-size] [background-clip]

Further info on this property:

Multiple backgrounds are defined using comma-separated value sets. If a background color is included in the shorthand with multiple backgrounds, it must be declared last after a comma. If background-size is included, it's paired with background-position after a forward slash.

permalink MDN info W3C info

multiple multiple-bg

background-attachment

  • scroll
  • fixed
  • local

Further info on this property:

If multiple background images are defined, multiple background-attachment values are declared by comma-separating the values.

permalink MDN info W3C info

color

  • [ initial value depends on the user agent ]
  • <color>

permalink MDN info W3C info

background-color

permalink MDN info W3C info

clip

Further info on this property:

Applies only to absolutely positioned elements. The lengths can also be <percentage>.

permalink MDN info W3C info

background-clip

  • border-box
  • padding-box
  • content-box

Further info on this property:

If multiple background images are defined, multiple background-clip values are declared by comma-separating the values.

permalink MDN info W3C info

background-image

Further info on this property:

Multiple background images are defined using comma-separated values. URLs can be defined without quotes.

permalink MDN info W3C info Gradients on W3C

linear-gradient radial-gradient multiple-bg

background-origin

  • border-box
  • padding-box
  • content-box

Further info on this property:

This property has no effect on background images that have their background-attachment property set to "fixed".

permalink MDN info W3C info

position

  • static
  • relative
  • absolute
  • fixed
  • center
  • page

permalink MDN info W3C info

background-position

Further info on this property:

If multiple background images are defined, multiple background-position values are defined using comma-separated value pairs. Keywords represent horizontal (left, center, right) and vertical (top, center, bottom) offsets, and can be mixed and matched.

permalink MDN info W3C info

background-repeat

  • repeat
  • repeat-x
  • repeat-y
  • no-repeat
  • space
  • round
  • repeat no-repeat

Further info on this property:

Can be any two space-separated values, representing horizontal repeat and vertical repeat.

If multiple background images are defined, multiple background-repeat values are defined using comma-separated value sets.

permalink MDN info W3C info

background-size

Further info on this property:

If two values are included, the first value is the width and the second is the height.

permalink MDN info W3C info

border

This is a shorthand property. Values represent:

  • [border-width] [border-style] [border-color]

permalink MDN info W3C info

border-collapse

  • collapse
  • separate

permalink MDN info W3C info

border-color

This is a shorthand property that accepts one to four values.

Further info on this property:

When one or more values are omitted, the existing values are applied to the missing ones. In other words, missing value #3 matches existing value #1 and missing value #4 matches existing value #2.

permalink MDN info W3C info

top

Further info on this property:

Applies to positioned elements.

permalink MDN info W3C info

border-top

This is a shorthand property. Values represent:

  • [border-width] [border-style] [border-color]

permalink MDN info W3C info

border-top-color

permalink MDN info W3C info

border-right

This is a shorthand property. Values represent:

  • [border-width] [border-style] [border-color]

permalink MDN info W3C info

border-right-color

permalink MDN info W3C info

bottom

Further info on this property:

Applies to positioned elements.

permalink MDN info W3C info

border-bottom

This is a shorthand property. Values represent:

  • [border-width] [border-style] [border-color]

permalink MDN info W3C info

border-bottom-color

permalink MDN info W3C info

left

Further info on this property:

Applies to positioned elements.

permalink MDN info W3C info

border-left

This is a shorthand property. Values represent:

  • [border-width] [border-style] [border-color]

permalink MDN info W3C info

border-left-color

permalink MDN info W3C info

border-radius

This is a shorthand property.

Further info on this property:

Length values can be mixed with percentages. If one or more values are omitted, the existing values are applied to the missing ones. In other words, missing value #3 matches existing value #1 and missing value #4 matches existing value #2.

permalink MDN info W3C info

border-top-left-radius

permalink MDN info W3C info

border-top-right-radius

permalink MDN info W3C info

border-bottom-left-radius

permalink MDN info W3C info

border-bottom-right-radius

permalink MDN info W3C info

border-image

This is a shorthand property. Values represent:

  • [border-image-source] [border-image-slice] / [border-image-width] [border-image-width] / [border-image-outset] [border-image-repeat]

permalink MDN info W3C info

border-image-source

  • none
  • url("path/file.png")

permalink MDN info W3C info

border-image-slice

  • 100%
  • [ Up to four space-separated <number> or <percentage> values; the optional 'fill' keyword can be included after the other values are declared ]

permalink MDN info W3C info

width

permalink MDN info W3C info

border-image-width

  • 1
  • [ Up to four space-separated <length>, <percentage>, or <number> values for top, right, bottom, and left; one or more values can be 'auto' ]

permalink MDN info W3C info

border-image-outset

  • 0
  • [ Up to four space-separated <length> or <number> values defining outsets for top, right, bottom, and left sides ]

permalink MDN info W3C info

border-image-repeat

  • stretch
  • repeat
  • round
  • space

Further info on this property:

Can be two space-separated values representing horizontal and vertical repeating.

permalink MDN info W3C info

border-spacing

Further info on this property:

Applies to table cells. If two values are declared, the first value is the horizontal spacing and second is vertical.

permalink MDN info W3C info

border-style

This is a shorthand property that accepts one to four values.

  • none
  • hidden
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset

Further info on this property:

When one or more values are omitted, the existing values are applied to the missing ones. In other words, missing value #3 matches existing value #1 and missing value #4 matches existing value #2.

permalink MDN info W3C info

border-top-style

  • none
  • hidden
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset

permalink MDN info W3C info

border-right-style

  • none
  • hidden
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset

permalink MDN info W3C info

border-bottom-style

  • none
  • hidden
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset

permalink MDN info W3C info

border-left-style

  • none
  • hidden
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset

permalink MDN info W3C info

border-width

This is a shorthand property that accepts one to four values.

Further info on this property:

When one or more values are omitted, the existing values are applied to the missing ones. In other words, missing value #3 matches existing value #1 and missing value #4 matches existing value #2.

permalink MDN info W3C info

border-top-width

permalink MDN info W3C info

border-right-width

permalink MDN info W3C info

border-bottom-width

permalink MDN info W3C info

border-left-width

permalink MDN info W3C info

box-decoration-break

  • slice
  • clone

permalink MDN info W3C info

box-shadow

Further info on this property:

The "inset" keyword is optional. The <length> values are horizontal offset, vertical offset, blur and spread. Multiple shadows are applied by comma-separating value sets.

permalink MDN info W3C info

box-sizing

  • content-box
  • padding-box
  • border-box

permalink MDN info W3C info

break-before

  • auto
  • always
  • avoid
  • left
  • right
  • page
  • column
  • avoid-page
  • avoid-column

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

break-after

  • auto
  • always
  • avoid
  • left
  • right
  • page
  • column
  • avoid-page
  • avoid-column

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

break-inside

  • auto
  • avoid
  • avoid-page
  • avoid-column

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

caption-side

  • top
  • bottom
  • before
  • after

permalink MDN info W3C info

clear

  • none
  • left
  • right
  • both

permalink MDN info W3C info

clear-after

  • none
  • left
  • right
  • both
  • top
  • bottom
  • inside
  • outside
  • start
  • end
  • descendants

permalink MDN info W3C info

column-fill

  • auto
  • balance

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-span

  • none
  • all

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-width

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-count

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-gap

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-rule

This is a shorthand property. Values represent:

  • [column-rule-width] [column-rule-style] [column-rule-color]

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-rule-color

  • [ Initial value depends on the user agent ]
  • <color>

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-rule-style

  • none
  • hidden
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

column-rule-width

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

columns

This is a shorthand property. Values represent:

  • [column-width] [column-count]

Further info on this property:

Part of CSS3 multiple columns.

permalink MDN info W3C info

content

permalink MDN info W3C info

counter-increment

Further info on this property:

Part of CSS counters.

permalink MDN info W3C info

counter-reset

Further info on this property:

Part of CSS counters.

permalink MDN info W3C info

cursor

  • auto
  • default
  • none
  • context-menu
  • help
  • pointer
  • progress
  • wait
  • cell
  • crosshair
  • text
  • vertical-text
  • alias
  • copy
  • move
  • no-drop
  • not-allowed
  • e-resize
  • n-resize
  • ne-resize
  • nw-resize
  • s-resize
  • se-resize
  • sw-resize
  • w-resize
  • ew-resize
  • ns-resize
  • nesw-resize
  • nwse-resize
  • col-resize
  • row-resize
  • all-scroll
  • zoom-in
  • zoom-out
  • url("path/file.png")
  • vertical-text

permalink MDN info W3C info

display

  • inline
  • block
  • flex
  • list-item
  • inline-block
  • table
  • inline-flex
  • inline-table
  • table-row-group
  • table-header-group
  • table-footer-group
  • table-row
  • table-column-group
  • table-column
  • table-cell
  • table-caption
  • none

permalink MDN info W3C info

empty-cells

  • show
  • hide

Further info on this property:

Applies to table cells.

permalink MDN info W3C info

float

  • none
  • left
  • right

permalink MDN info W3C info

flex

This is a shorthand property. Values represent:

  • [flex-grow] [flex-shrink] [flex-basis]
  • none

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

flex-direction

  • row
  • row-reverse
  • column
  • column-reverse

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

flex-wrap

  • nowrap
  • wrap
  • wrap-reverse

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

flex-flow

This is a shorthand property. Values represent:

  • [flex-direction] [flex-wrap]

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

flex-grow

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

flex-shrink

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

flex-basis

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

justify-content

  • flex-start
  • flex-end
  • center
  • space-between
  • space-around

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

align-items

  • stretch
  • flex-start
  • flex-end
  • center
  • baseline

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

align-self

  • auto
  • flex-start
  • flex-end
  • center
  • baseline
  • stretch

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

align-content

  • stretch
  • flex-start
  • flex-end
  • center
  • space-between
  • space-around

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

order

Further info on this property:

Part of CSS3 flex box.

permalink MDN info W3C info

font

This is a shorthand property. Values represent:

  • [font-style] [font-variant] [font-weight] [font-size] / [line-height] [font-family]

Further info on this property:

For info on the order of values, mandatory values, etc., see this cheat sheet.

permalink MDN info W3C info

font-family

Further info on this property:

Font stacks are created by comma-separating font names. A final <generic-family> is recommended.

permalink MDN info W3C info

font-size

permalink MDN info W3C info

font-stretch

  • normal
  • ultra-condensed
  • extra-condensed
  • condensed
  • semi-condensed
  • semi-expanded
  • expanded
  • extra-expanded
  • ultra-expanded

permalink MDN info W3C info

font-size-adjust

permalink MDN info W3C info

font-synthesis

  • none
  • weight
  • style
  • weight style

permalink MDN info W3C info

font-kerning

  • auto
  • normal
  • none

permalink MDN info W3C info

font-variant

This is a shorthand property. Values include:

  • normal
  • small-caps
  • all-small-caps
  • petite-caps
  • all-petite-caps
  • titling-caps
  • unicase

Further info on this property:

This property is now a shorthand covering a number of font feature properties. Not all possible values are shown here.

permalink MDN info W3C info

font-variant-caps

  • normal
  • small-caps
  • all-small-caps
  • petite-caps
  • all-petite-caps
  • titling-caps
  • unicase

permalink MDN info W3C info

font-style

  • normal
  • italic
  • oblique

permalink MDN info W3C info

font-weight

  • normal
  • bold
  • bolder
  • lighter
  • 100
  • 200
  • 300
  • 400
  • 500
  • 600
  • 700
  • 800
  • 900

permalink MDN info W3C info

hanging-punctuation

  • none
  • first
  • force-end
  • allow-end
  • last
  • first force-end
  • first allow-end
  • last force-end
  • last allow-end

permalink MDN info W3C info

height

permalink MDN info W3C info

hyphens

  • manual
  • none
  • auto

permalink MDN info W3C info

icon

  • auto
  • One or more comma separated <url> values

permalink MDN info W3C info

image-resolution

permalink MDN info W3C info

image-orientation

permalink MDN info W3C info

letter-spacing

Further info on this property:

Can be up to three values representing optimum, minimum, and maximum spacing. If two values are used, the first represents optimum and minimum; if one is used, it represents all three.

permalink MDN info W3C info

line-break

  • auto
  • loose
  • normal
  • strict

permalink MDN info W3C info

line-height

permalink MDN info W3C info

list-style

This is a shorthand property. Values represent:

  • [list-style-type] [list-style-position] [list-style-image]

Further info on this property:

Applies to CSS lists.

permalink MDN info W3C info

list-style-image

Further info on this property:

Applies to CSS lists.

permalink MDN info W3C info

list-style-position

  • outside
  • inside

Further info on this property:

Applies to CSS lists.

permalink MDN info W3C info

list-style-type

  • disc
  • circle
  • square
  • decimal
  • decimal-leading-zero
  • lower-roman
  • upper-roman
  • lower-greek
  • lower-latin
  • upper-latin
  • armenian
  • georgian
  • lower-alpha
  • upper-alpha
  • none

Further info on this property:

Applies to CSS lists.

permalink MDN info W3C info

margin

This is a shorthand property. Values represent:

  • [margin-top] [margin-right] [margin-bottom] [margin-left]

Further info on this property:

When one or more values are omitted, the existing values are applied to the missing ones. In other words, missing value #3 matches existing value #1 and missing value #4 matches existing value #2.

permalink MDN info W3C info

margin-left

permalink MDN info W3C info

margin-right

permalink MDN info W3C info

margin-top

permalink MDN info W3C info

margin-bottom

permalink MDN info W3C info

max-height

permalink MDN info W3C info

max-width

permalink MDN info W3C info

min-height

permalink MDN info W3C info

min-width

permalink MDN info W3C info

object-fit

  • fill
  • contain
  • cover
  • none
  • scale-down

permalink MDN info W3C info

object-position

Further info on this property:

Keywords represent horizontal (left, center, right) and vertical (top, center, bottom) offsets, and can be mixed and matched.

permalink MDN info W3C info

opacity

permalink MDN info W3C info

orphans

Further info on this property:

Part of CSS3 paged media.

permalink MDN info W3C info

outline

This is a shorthand property. Values represent:

  • [outline-color] [outline-style] [outline-width]

permalink MDN info W3C info

outline-color

permalink MDN info W3C info

outline-offset

permalink MDN info W3C info

outline-style

  • none
  • auto
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset

permalink MDN info W3C info

outline-width

permalink MDN info W3C info

overflow

  • visible
  • hidden
  • scroll
  • auto

permalink MDN info W3C info

overflow-x

  • visible
  • hidden
  • scroll
  • auto

permalink MDN info W3C info

overflow-y

  • visible
  • hidden
  • scroll
  • auto

permalink MDN info W3C info

overflow-wrap

  • normal
  • break-word

permalink MDN info W3C info

padding

This is a shorthand property. Values represent:

  • [padding-top] [padding-right] [padding-bottom] [padding-left]

Further info on this property:

When one or more values are omitted, the existing values are applied to the missing ones. In other words, missing value #3 matches existing value #1 and missing value #4 matches existing value #2.

permalink MDN info W3C info

padding-top

permalink MDN info W3C info

padding-bottom

permalink MDN info W3C info

padding-left

permalink MDN info W3C info

padding-right

permalink MDN info W3C info

page-break-after

  • auto
  • always
  • avoid
  • left
  • right

permalink MDN info W3C info

page-break-before

  • auto
  • always
  • avoid
  • left
  • right

Further info on this property:

Part of CSS3 paged media.

permalink MDN info W3C info

page-break-inside

  • auto
  • avoid

Further info on this property:

Part of CSS3 paged media.

permalink MDN info W3C info

perspective

Further info on this property:

Part of CSS3 transforms.

permalink MDN info W3C info

perspective-origin

Further info on this property:

Part of CSS3 transforms. Can be up to two space-separated values, for horizontal and vertical offsets.

permalink MDN info W3C info

pointer-events

  • auto
  • none

Further info on this property:

The spec defines 8 other values that apply only to SVG elements.

permalink MDN info W3C info

quotes

Further info on this property:

Used along with :before and :after pseudo-elements.

permalink MDN info W3C info

resize

  • none
  • both
  • horizontal
  • vertical

permalink MDN info W3C info

tab-size

permalink MDN info W3C info

table-layout

  • auto
  • fixed

Further info on this property:

Applies to HTML tables.

permalink MDN info W3C info

text-align

  • [ Initial value depends on the writing direction (ltr or rtl) ]
  • left
  • right
  • center
  • justify
  • <string>
  • match-parent
  • start
  • end
  • start end

Further info on this property:

The <string> value must be a single character.

permalink MDN info W3C info

text-align-last

  • auto
  • start
  • end
  • left
  • right
  • center
  • justify

permalink MDN info W3C info

text-decoration

This is a shorthand property. Values represent:

  • [text-decoration-line] [text-decoration-style] [text-decoration-color]

permalink MDN info W3C info

text-decoration-line

  • none
  • underline
  • overline
  • line-through
  • blink

Further info on this property:

Allows multiple space-separated values.

permalink MDN info W3C info

text-decoration-skip

  • none
  • objects
  • spaces
  • ink
  • edges

Further info on this property:

Allows multiple space-separated values.

permalink MDN info W3C info

text-underline-position

  • auto
  • alphabetic
  • under
  • left
  • right
  • under left
  • under right

permalink MDN info W3C info

text-decoration-position

text-decoration-style

  • solid
  • double
  • dotted
  • dashed
  • wavy

permalink MDN info W3C info

text-emphasis

This is a shorthand property. Values represent:

  • [text-emphasis-style] [text-emphasis-color]

Further info on this property:

This shorthand does not include text-emphasis-position

permalink MDN info W3C info

text-emphasis-style

  • none
  • filled
  • open
  • dot
  • circle
  • double-circle
  • triangle
  • sesame
  • <string>

Further info on this property:

The values "filled" and "open" can be combined with any one of the remaining values except "none".

permalink MDN info W3C info

text-emphasis-color

permalink MDN info W3C info

text-emphasis-position

  • above right
  • above left
  • below right
  • below left

permalink MDN info W3C info

text-indent

Further info on this property:

Where <length> is specified along with one or more optional keywords, this can be replaced with <percentage>.

permalink MDN info W3C info

text-justify

  • auto
  • none
  • inter-word
  • inter-ideograph
  • inter-cluster
  • distribute
  • kashida

permalink MDN info W3C info

text-orientation

  • mixed-right
  • upright
  • sideways-right
  • sideways-left
  • sideways
  • use-glyph-orientation

permalink MDN info W3C info

text-combine-horizontal

  • none
  • all

permalink MDN info W3C info

text-overflow

permalink MDN info W3C info

transform

permalink MDN info W3C info

matrix scale rotate skew translate

transform-origin

Further info on this property:

Can be up to three space-separated values, for horizontal, vertical, and Z position.

permalink MDN info W3C info

transform-style

  • flat
  • preserve-3d

permalink MDN info W3C info

text-transform

  • none
  • capitalize
  • uppercase
  • lowercase
  • full-width

permalink MDN info W3C info

text-shadow

Further info on this property:

The <length> values are horizontal offset, vertical offset, and blur. Multiple shadows are applied by comma-separating the sets of values.

permalink MDN info W3C info

transition

This is a shorthand property. Values represent:

  • [transition-property] [transition-duration] [transition-timing-function] [transition-delay]

Further info on this property:

Accepts a comma-separated list of transitions and their respective values.

permalink MDN info W3C info

transition-property

  • all
  • none
  • [ A comma-separated list of property names ]

permalink MDN info W3C info

transition-timing-function

permalink MDN info W3C info

transition-duration

permalink MDN info W3C info

unicode-bidi

  • normal
  • embed
  • bidi-override

permalink MDN info W3C info

vertical-align

Further info on this property:

Applies to inline elements.

permalink MDN info W3C info

white-space

  • normal
  • pre
  • nowrap
  • pre-wrap
  • pre-line

permalink MDN info W3C info

widows

Further info on this property:

Part of CSS3 paged media.

permalink MDN info W3C info

word-break

  • normal
  • keep-all
  • break-all

permalink MDN info W3C info

word-spacing

Further info on this property:

Can be up to three values representing optimum, minimum, and maximum spacing. If two values are used, the first represents optimum and minimum, and one value represents all three.

permalink MDN info W3C info

word-wrap

  • normal
  • break-word

Further info on this property:

This property has been replaced by overflow-wrap, but all future browsers will support it as an alternate syntax.

permalink MDN info W3C info

writing-mode

  • horizontal-tb
  • vertical-rl
  • vertical-lr

permalink MDN info W3C info

z-index

Further info on this property:

Applies to positioned elements.

permalink MDN info W3C info