Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Stuck on level 13 > lesson 14

transform-origin
by

5 Answers

Danielp3azl
Okay, Fixed
iamabhishek
Done?
Danielp3azl
Yes Sir, Fixed... Kind of Stuck on LEVEL 16 > LESSON 4.... My output matches the expected output yet terminal says:
'Use the grid-row-start property with correct value. '
Danielp3azl
<style>

.grid {
display: grid;
background-color: #d6d1f5;
padding: 20px;
grid-template-columns: [start] auto [line2] auto [line3] auto [end];
}

.item {
background-color: #E7E4F8;
border: 1px solid black;
padding: 20px;
text-align: center;
}

.item-x {
background-color: #ED639E;
grid-column-start: line2;
grid-column-end: line3 ;
grid-row-start: line2;
grid-row-end: span 2;
}

</style>
Danielp3azl
Fixed it Sir. Good Morning Mentor

<style>
.grid {
display: grid;
background-color: #d6d1f5;
padding: 20px;
grid-template-columns: [start] auto [line2] auto [line3] auto [end];
}

.item {
background-color: #E7E4F8;
border: 1px solid black;
padding: 20px;
text-align: center;
}

.item-x {
background-color: #ED639E;
grid-column-start: line2;
grid-column-end: line3;

grid-row-start: 2;
grid-row-end: span 2;
}
</style>

Login / Signup to Answer the Question.