Mistake in - Step 43 - Learn CSS Transforms by Building a Penguin - 0am-Ze7jBrzF20y1sV8vi

Tell us what’s happening:

In step 43 it is mentioned to increase the opacity by 30% when actually the right solution is to decrease the opacity by 30% and give it a value of 70%.

   **Your code so far**
/* file: styles.css */

.penguin-body::before {
 content: "";
 position: absolute;
 width: 50%;
 height: 45%;
 background-color: gray;
 top: 10%;
 left: 25%;
 border-radius: 0% 0% 100% 100%;
***opacity:70%;***
}

   **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Learn CSS Transforms by Building a Penguin - Step 43

Link to the challenge:

The instructions say to increase the transparency, which you do by decreasing the opacity.

Oh okay okay okay. Understood it now. Got a bit confused :sweat_smile:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.