Using CSS, how can I apply more than one transform?
transform
Example: In the following, only the translation is applied, not the rotation.
li:nth
You can apply more than one transform like this:
li:nth-of-type(2){ transform : translate(-20px, 0px) rotate(15deg); }