HTML CSS examples for CSS:Quiz
Skew the <div> element 20 degrees along the X-axis, and 30 degrees along the Y-axis.
<!DOCTYPE html> <html> <head> <style> div {<!-- w w w .j av a2 s . c om--> width: 100px; height: 100px; margin: 50px; background-color: pink; border: 1px solid black; transform: skew(20deg, 30deg); } </style> </head> <body> <div></div> </body> </html>