Your CSS rules could look like this:
a:link, a:visited, a:hover, a:active {
background-color: green;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
CSS Maid transforms it as follows:
a:link, a:visited, a:hover, a:active {
display: inline-block;
padding: 10px 25px;
background-color: green;
color: white;
text-align: center;
text-decoration: none;
}
We group properties by these types:
- Positioning
- Display
- Flex
- Color
- Font
- Grid
- Transition
- List
- Animation
- Anything Else
Please open an issue for support.
Feel free to report any issues or provide any feedback you may have.
MIT