shorten-properties.css 275 Bytes
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11
a{
    margin: 1px 2px 1px 2px;
    padding: 23rem 1.2em 23rem 1.2em;
}
b{
    margin: 2px 3px 2pc 3px;
    padding: calc(1px + 2px) 3.44em calc(1px + 2px) 3.44em; /* calc() will not match our regex so optimization won't be applied here */
}
c{
    margin: 1px 2px 3px 2px;
}