postcss-short
postcss-short copied to clipboard
Use advanced shorthand properties in CSS
Hi, I noticed this by accident, but *postcss-short* I believe is not accounting for the CSS `!important` flag. I noticed this with `font-size`. For example: ```css p { font-size: inherit...
Can I request the ability to use `stroke` as a shorthand for: - stroke - stroke-dasharray - stroke-dashoffset - stroke-width *Input:* ``` .test { stroke: red 50 204 1px; }...
Can I request the ability to use the following: *Input:* ``` .test { max-size: 10px 50px; } ``` *Output:* ``` .test { max-width: 10px; max-height: 50px } ``` Thank you...