HTML CSS examples for CSS:Quiz
Rotate the <div> element 120deg around its Y-axis.
<!DOCTYPE html> <html> <head> <style> div {<!--from w w w.j av a 2 s . c om--> width: 100px; height: 100px; background-color: pink; border: 1px solid black; transform: rotateY(120deg); } </style> </head> <body> <div>This is a div element</div> </body> </html>