CSS3 rotation プロパティ
完全な CSS3 リファレンス
例
Rotate h1 elements 180 degrees (upside down):
h1
{
rotation-point:50% 50%;
rotation:180deg;
} |
Try it yourself »
|
ブラウザ・サポート

rotation プロパティをサポートしているブラウザはありません。
定義と用法
rotation property rotates a block-level element
counterclockwise around a given point defined by the
rotation-point property.
チップ: The border, padding, content, and backgrounds (that are not
fixed) are also rotated!
| デフォルト値: |
0 |
| 継承: |
no |
| バージョン: |
CSS3 |
| JavaScript構文: |
object.style.rotation="180deg" |
構文
| 値 |
説明 |
| angle |
The rotation of the element. Possible values: 0deg to 360deg |
完全な CSS3 リファレンス
|