+ 1
Which tag do i use to flip the paragraph upside down. Need help to complete the css toturial.
module 7 quiz question # 5
3 Réponses
+ 6
Use the transform key word
transform:rotate(180deg);
The transformation rotate will rotate the paragraph
180deg will rotate the paragraph
180 degrees. This is the same as flipping upside down
+ 1
rotate: 180?
//transform: rotate(180deg);
+ 1
thanks