# 2025-04-18-1

Published: Fri, Apr 18, 2025
Tags: css, tip

Quick little improvement for wrapping highlighted text. Make use of `box-decoration-break: clone;` to ensure elements fragments break across lines.

```css
mark {
  box-decoration-break: clone;
}
```

View demo on [Twitter](https://x.com/alexcarp_me/status/1821533842228089056/video/1).
