What does backface visibility mean?
The CSS backface-visibility
property is used to define if the backface of the element should be visible to the user when it's not facing the screen:
Example
.nobackface {
-webkit-backface-visibility: hidden; /* Opera, Chrome, Safari */
backface-visibility: hidden;
}
You should use this property when you need to be able to rotate an element, but you want its back to stay invisible. As 2D elements have no perspective and thus cannot be rotated, CSS backface-visibility
only works on 3D elements.

Pros Main Features
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid certificates of completion

Pros Main Features
- Easy to navigate
- No technical issues
- Seems to care about its users
- Huge variety of courses
- 30-day refund policy
- Free certificates of completion

Pros Main Features
- Great user experience
- Offers quality content
- Very transparent with their pricing
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
Syntax for backface-visibility
The syntax for the CSS backface-visibility
property is simple:
backface-visibility: value;
There are two options you can use with this property:
visible
will provide the element in CSS backface visibility, i.e. the back will be visiblehidden
will not provide the element in CSS backface visibility, i.e. the back will be hidden
Browser support

Chrome
36+

Edge
12+

Firefox
16+

IE
10+

Opera
23+

Safari
5.1+
Mobile browser support

Chrome
36+

Firefox
16+

Opera
24+

Safari
5+