Hello. Bee trying to solve this task for a couple of hours. Please take a look, maybe someone can help. This is the first question on this task. Seems to me like I did everything right. This is the task: Create a custom CSS variable named --penguin-skin , and set it to gray . Then, replace all relevant property values with it.
** The mistake i get: You should give .penguin-body: :before a background-color of var(--penguin-skin) , but found `` .**
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
I thank you but to be fair, my style of answering changes depending on the question and the issue.
(sometimes I give very obscure hints because that is what I think the person needs to learn from - to think for themselves essentially)
As this is a forum, many people will answer in very different ways. Some ways work for someone but not for someone else.
I am just saying all of this because I get the feeling you have a concern about a response you have seen on here. It is important to know that part of learning to code is learning to communicate with all sorts of people. And sometimes that means not getting the responses in the way that suits you most, but still making the best of the input you receive either way.
Hello, thank you for responding. That is right, I am new in this chat and I apreciate your help. This is the arm part that was missing. .arm {
width: 30%;
height: 60%;
background: linear-gradient(
90deg,
gray,
rgb(209, 210, 199)
);
}