CSS

CSS Intro

CSS Intro Quiz

CSS Intro Exercise

CSS Basic

CSS Basic Quiz

CSS Basic Exercise

CSS Advance

CSS Advance Quiz

CSS Advance Exercise

CSS3

CSS3 Quiz

CSS3 Exercise

CSS Properties

CSS Functions

CSS Selectors

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.

Code Explanation

All Tutorials related to CSS Properties

All Sections related to CSS