This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

text-overline-mode

Summary

Sets the mode for the overline text decoration, determining whether the text decoration affects the space characters or not.

Overview table

Initial value
continuous
Applies to
all elements with and generated content with textual content
Inherited
No
Media
visual
Computed value
specified value (except for initial and inherit)
Animatable
No

CSS Object Model Property
:

Syntax

  • text-overline-mode: continuous
  • text-overline-mode: skip-white-space

Values

continuous
This value means that the line is continuous.
skip-white-space
This means that space characters will not be lined.

Examples

Currently not implemented in any browser, so example is incomplete.

p {
  text-overline-mode: skip-white-space;
}

View live example

Notes

Not implemented in any browser, but Chrome has a placeholder property for it (which may fool any feature detectors into thinking it works).

Related specifications

CSS3 Text Module
Candidate Recommendation