+ 2
Can someone tell me how to flip a paragraph upside down
3 Respuestas
+ 2
Its really simple
the HTML:
<span class="upsidedown">WORD</span>
the CSS:
.upsidedown {
display: inline-block;
transform: rotateX(180deg);
}
hope this helps
~Kamil
+ 5
it is by
transform: rotateZ(180deg);
use prefixes too
+ 1
Thank you guys, its correct