Menu
×
×
Correct!
Exercise:With the transform property, rotate the <div> element 45 degrees. Hint: Use the rotate() method. |
Edit This Code:
x
<html> <head> <style> div { width: 100px; height: 100px; margin: 50px; background-color: lightblue; border: 1px solid black; } </style> </head> <body> <div></div> </body> <!-- Mirrored from www.w3schools.com/css/exercise.asp?filename=exercise_css3_2dtransforms2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 13:17:33 GMT --> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|