Такой макет
<head>
<style>
.und {
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 3px;
}
.num {
text-decoration: none;
}
.num::after {
content: "( " attr(data-num) " )";
text-decoration: none;
}
}
</style>
</head>
<body>
Lorem ipsum dolor sit amet,
<span class="und">
consectetur adipiscing
<span class="num" data-num="1742"></span>
elit
</span>
, sed do eiusmod tempor ...
</body>
Как бы убрать подчеркивание с псевдоэлемента (выводится как "( 1742 )" ) ?
text-decoration:none;
в .num и .num::after не помогают.