Learn CSS Grid by Building a Magazine - Step 77

ESP/ENG

Hello. I dont understand why i am not correct in this code. This is my step: Start with a @media query for only screen with a max-width of 720px . Inside, create an .image-wrapper selector and give it a grid-template-columns property of 1fr .

No sé por qué esta incorrecto este código. Esta es mi consigna: Comience con una consulta @media para only screen con un max-width de 720px . Dentro, crea un selector .image-wrapper y dale una propiedad grid-template-columns de 1fr .

@media screen and (max-width:720px){
  .image-wrapper{
    grid-template-columns:1fr;
  }
}

Challenge: Learn CSS Grid by Building a Magazine - Step 77

Link to the challenge:

you need to use “only screen”

oh thanks. i didnt know how to set media for only screens. now i know. thanks