I have the html structure like this
<div class="block>
content
<span class="child">text</span>
</div>
in css i said:
.block{
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.99254615, M12=0.12186934, M21=-0.12186934, M22=0.99254615, sizingMethod='auto expand');
}
So that the block will rotate minus 7degree. However, I don't want span.child to be rotate. (and I don't want to take it out side the block class)
What should i do in css in order to not rotate the child element (no javascript please)