How to apply multiple CSS3 rotation transformations (compounded) without javascript?
问题 For example, let's say we have several sibling elements. With CSS sibling selectors, how could we apply more rotation to each subsequent element in addition to the rotation applied to the previous one? Seems it would be necessary to specify that the origin of the transformation is the result of the previous transformation, but I don't know how to do it. Here's an attempt which obviously doesn't work. transform: rotate(5deg); 回答1: Since these elements are siblings, and not children of each