Minify the zero <length> in CSS functions
Open
area: hir
baseline: widely available
complexity: high
impact: many StyleValues
popularity: very high
- Dominant language
- Rust
- Stars
- 328
- Forks
- 11
- Avg merge
- 5h 45m
- Merged PRs (30d)
- 99
Description
We should review all CSS functions to determine which ones can be safely removed.
https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/Functions
## Example Input
```css
.foo {
filter: blur(0px);
/* and more CSS functions ... */
}
```
## Expected
```css
.foo{filter:blur(0)}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.