Computer scienceFrontendCSSAdvanced features

Backface-visibility

Visible and hidden

Report a typo

Change the CSS code so that when you hover the cursor over the header, the back side of the header is visible, and when you hover over a paragraph with text, the back side is hidden.

Tip: To hide the back side, change only the value of the property, do not delete the code.

Write HTML and CSS code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Visible or hidden</title>
</head>
<body>
<h1>VISIBLE</h1>
<p>HIDDEN</p>
</body>
</html>
Completed 0 of 2
The back side of the first level header is visible when you hover the mouse
The reverse paragraph with the text is hidden when you hover the mouse
___

Create a free account to access the full topic