keep getting a error, please help
the directions are:
Step 9
As described in the freeCodeCamp Style Guide, the logo should retain an aspect ratio of 35:4
, and have padding around the text.
First, change the background-color
to #0a0a23
so you can see the logo. Then, use the aspect-ratio
property to set the desired aspect ratio. Finally, add a padding
of 0.4rem
all around.
my code is as follows:
#logo {
width: max(100px, 18vw);
background-color: #0a0a23;
padding: 0.4rem;
aspect-ratio: 35:4;
}
the error I receive is:
Test
Sorry, your code does not pass. Don’t give up.
Hint
You should use the aspect-ratio
property.
Please help