backface-visibility - CSS 3
The 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.To better understand this property,
view a demo.
Syntax
backface-visibility: visible|hidden|initial|inherit;
Example
div
{
-webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
backface-visibility: hidden;
}
Output / Return Value
Limitations
Alternatives / See Also
Reference