CSS 参考手册
CSS3 rotation 属性
将 h1 元素旋转 180 度(从上向下):p>
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> h1 { rotation-point: 50% 50%; rotation: 180deg; } </style> </head> <body> <h1>Rotation effect</h1> <p><b>Note:</b> None of the major browsers support the rotation-point or rotation properties.</p> </body> </html>
运行结果:
点击运行 »