postcss-short icon indicating copy to clipboard operation
postcss-short copied to clipboard

Use advanced shorthand properties in CSS

Results 3 postcss-short issues
Sort by recently updated
recently updated
newest added

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...