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

Stuck at level 16 lesson 3

.grid {
display: grid;
background-color: #d6d1f5;
padding: 20px;
grid-template-columns: 50px auto 25%;
grid-template-columns: [start] [line2] [line3] [end];
grid-template-rows: 150px 15% auto;
{
it get me the right output but not able to pass
by

1 Answer

WilliamJohn
Hi...
your code is sort of correct . but merge your grid line name with the value in one line
try this code it will work :-

grid-template-columns: [start] 50px [line2] auto [line3] 25% [end];

Login / Signup to Answer the Question.