Can someone tell me how to flip a paragraph upside down | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 2

Can someone tell me how to flip a paragraph upside down

2nd Dec 2016, 6:05 PM
Murei K Vincent
Murei K Vincent - avatar
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
2nd Dec 2016, 7:25 PM
Kamil
Kamil - avatar
+ 5
it is by transform: rotateZ(180deg); use prefixes too
2nd Dec 2016, 7:59 PM
Sandeep Chatterjee
+ 1
Thank you guys, its correct
3rd Dec 2016, 5:40 AM
Murei K Vincent
Murei K Vincent - avatar