JSFiddle - React, Tailwind, and code Playground
HTML
<div class="face front">
Front content.
</div>
<div class="face back">
Back content.
</div>
CSS
.face {
position: absolute;
width: 200px;
height: 200px;
}
.front {
background: #fcc;
}
.back {
background: #ccf;
-webkit-transform: rotateY(180deg);
-webkit-backface-visibility: visible;
}
JavaScript
/* Backface visibility bug */