CSS backface visibility Property
CSS backface-visibility Property
The backface-visibility property is used to specify whether or not the back face of an element should be visible when facing the user. The back face of an element is actually a mirror image of the front face being displayed. It is useful when an element is rotated. It allows us to choose if the user should see the back face or not.
Default Value:-
Its default value is visible.
Syntax:-
Its syntax is:- backface-visibility: visible | hidden | initial | inherit;
Further Explanation:-
Value | Description |
---|---|
visible | Default value. The backside is visible |
hidden | The backside is not visible |
initial | Sets this property to its default value. |
inherit | Inherits this property from its parent element. |