text-decoration-skip CSS propertyDeprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The text-decoration-skip CSS property sets what parts of an element's content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors.
Note: Most other browsers are converging on supporting the simpler text-decoration-skip-ink property.
/* Keyword values */
text-decoration-skip: none;
text-decoration-skip: objects;
text-decoration-skip: spaces;
text-decoration-skip: edges;
text-decoration-skip: box-decoration;
/* Multiple keywords */
text-decoration-skip: objects spaces;
text-decoration-skip: leading-spaces trailing-spaces;
text-decoration-skip: objects edges box-decoration;
/* Global values */
text-decoration-skip: inherit;
text-decoration-skip: initial;
text-decoration-skip: revert;
text-decoration-skip: revert-layer;
text-decoration-skip: unset;noneNothing is skipped. Thus, text decoration is drawn for all text content and across atomic inline-level boxes.
objectsThe entire margin box of the element is skipped if it is an atomic inline such as an image or inline-block.
spacesAll spacing is skipped: all Unicode white space characters and all word separators, plus any adjacent letter-spacing or word-spacing.
leading-spacesThe same as spaces, except that only leading spaces are skipped.
trailing-spacesThe same as spaces, except that only trailing spaces are skipped.
edgesThe start and end of the text decoration is inset slightly (e.g., by half of the line thickness) from the content edge of the decorating box. Thus, adjacent elements receive separate underlines. (This is important in Chinese, where underlining is a form of punctuation.)

box-decorationThe text decoration is skipped over the box's margin, border, and padding areas. This only has an effect on decorations imposed by an ancestor; a decorating box never draws over its own box decoration.
| Initial value | objects |
|---|---|
| Applies to | all elements |
| Inherited | yes |
| Computed value | as specified |
| Animation type | discrete |
text-decoration-skip =
none |
auto
<p>Hey, grab a cup of <em>coffee!</em></p>p {
margin: 0;
font-size: 3em;
text-decoration: underline;
text-decoration-skip: edges;
}