HTML CSS examples for CSS:Quiz
Rotate the <div> element 90deg around its Z-axis.
<!DOCTYPE html> <html> <head> <style> div {<!-- w ww. jav a2s . c o m--> width: 100px; height: 100px; background-color: pink; border: 1px solid black; transform: rotateZ(90deg); } </style> </head> <body> <div>This is a div element</div> </body> </html>