Hello I need help on building a Penguin lesson, it shows my code is not right but I look on forum here and cannot spot the difference please point out whats wrong with my code thank you!
The instructions were :Rotate the .back-mountain
element by 45deg
clockwise. Then, give it a left
property of 110px
, and a top
property of 225px
.
Link to project instruction below:https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-css-transforms-by-building-a-penguin/step-23
back-mountain {
width: 300px;
height: 300px;
background: linear-gradient(rgb(203, 241, 228), rgb(47, 170, 255));
position: absolute;
z-index: 1;
transform:(45deg);
left: 110px;
top: 225px;
}