Menu
×
×
Correct!
Exercise:With the transform property, skew the <div> element 20 degrees along the X-axis, and 30 degrees along the Y-axis. Hint: Use the skew(), or skewX() and skewY() methods. |
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> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|