csstools / postcss-short

Use advanced shorthand properties in CSS
https://jonathantneal.github.io/postcss-short
Creative Commons Zero v1.0 Universal
189 stars 7 forks source link

Feature request: `max-size` #18

Open elliott-impression opened 5 years ago

elliott-impression commented 5 years ago

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 and great work!