-
-
Notifications
You must be signed in to change notification settings - Fork 246
Closed
Labels
Description
Describe it simply:
When using @zumer/snapdom to capture screenshots of HTML elements, the CSS text-underline-offset property is not being rendered correctly. The offset value is ignored, causing underlines to appear at their default position regardless of the CSS specification.
Quick demo to reproduce
<style> .underlined-text { text-decoration: underline; text-underline-offset: 0.5em; /* Alternative with custom underline */ text-decoration: underline wavy #e74c3c; text-underline-offset: 4px; } </style>
This text should have an offset underline, but it renders at default position.