CSS3 backface-visibility プロパティ
完全な CSS3 リファレンス
例
Hide the backside of a rotated div element:
div
{
backface-visibility:hidden;
-webkit-backface-visibility:hidden; /* Safari */
} |
Try it yourself »
|
ブラウザ・サポート

backface-visibility property is only supported in Safari.
定義と用法
backface-visibility property defines whether or not an element
should be visible when not facing the screen.
This property is useful when an element is rotated, and you do not want to
see its backside.
Safari users: To better understand this property,
view a demo.
| デフォルト値: |
visible |
| 継承: |
no |
| バージョン: |
CSS3 |
| JavaScript構文: |
object.style.backfaceVisibility="hidden" |
構文
| backface-visibility: visible|hidden; |
| Property 値 |
説明 |
| visible |
The backside is visible |
| hidden |
The backside is not visible |
完全な CSS3 リファレンス
|