0
How to flip a Paragraph upside down in css3?
css3
2 Answers
+ 12
<p style="-webkit-transform:rotate(180deg);text-align:center;">Test</p>
(-webkit- should be used for mobile browsersâŠ)
+ 4
@VH soluce rotate your paragraphe, but if you want mirroring effect, you should use:
-webkit-transform:scale(1,-1);
-moz-transform:scale(1,-1);
-ms-transform:scale(1,-1);
-o-transform:scale(1,-1);
transform:scale(1,-1);
( put the prefixed and normal version of css properties, for cross-browsers and old versions compatibility ^^ )