Computer scienceFrontendCSSAdvanced features

Backface-visibility

Like in the image

Report a typo

Use the backface-visibility property to make the web page look like the image below:

Proportional 3D cube with colored sides

Write HTML and CSS code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cube</title>
</head>
<body>
<div class="container">
<div class="cube">
<div class="face" id="front"></div>
<div class="face" id="back"></div>
<div class="face" id="right"></div>
<div class="face" id="left"></div>
<div class="face" id="top"></div>
<div class="face" id="bottom"></div>
</div>
</div>
</body>
</html>
Completed 1 of 3
Hidden is one of the necessary backsides
Hidden is one of the necessary backsides
___

Create a free account to access the full topic