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
 
Syntax
text-overline-mode: continuoustext-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;
}
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