CSS Live Demo: text-decoration-thickness Click the demo button below!
selector {
    text-decoration-thickness: auto | from-font | <length-percentage>
}
/* Single keyword */
text-decoration-thickness: auto;
text-decoration-thickness: from-font;

/* length */
text-decoration-thickness: 0.12em;
text-decoration-thickness: 5px;

/* percentage */
text-decoration-thickness: 12%;

/* Global values */
text-decoration-thickness: inherit;
text-decoration-thickness: initial;
text-decoration-thickness: revert;
text-decoration-thickness: revert-layer;
text-decoration-thickness: unset;
<p>The text decoration thickness is 5px.</p>
p {
    text-decoration-line: underline;
    text-decoration-color: red;
    text-decoration-style: solid;
    text-decoration-thickness: 5px;
}
Rendered Output