Consider the following HTML:
<p>
<span> A </span>
<span> A </span>
<span> A </span>
</p>
Now try applying this CSS on it:
p span:nth-of-type(2) {transform: rotateX( 180deg ) ; color: blue }
You will see that the color has been changed on the second span, but the transform property has not. Could anyone explain why this is the case?