csstools / csstools/sanitize.css
zero-width space is consuming space in Safari
Open
- Dominant language
- CSS
- Stars
- 5.3k
- Forks
- 299
- PR merge metrics
- No merged PRs in 30d
Description
Commit https://github.com/csstools/sanitize.css/commit/97537649c8e5d53d98c8e4a6234a0917f824acf2# replaced
```
:where(nav li)::before {
content: "\200B";
position: absolute;
}
```
with
```
:where(nav li)::before {
content: "\200B";
float: left;
}
```
The addition of` float: left` adds unwanted space in Safari.
Contributor guide
Assessment
This issue has not been assessed yet.