Grid within grid

/* Only change code below this line */

.NestedGridElement{

.display: grid;              grid-template-columns: (auto, 1fr;)}

/* Only change code above this line */

}

I am having no success with htis challenge, any help out there?

remove that ( . ) before display: grid;

item3

class should have a grid-template-columns property with auto and
1fr as values.

This is the error message after removing period

You should write it like this:-

grid-template-columns: auto 1fr;