Kevin Powell - CommunityKP-C
Kevin Powell - Community11mo ago
15 replies
Pat66

Begin on media Queries

Hi everyone

I realise this
https://codepen.io/alpha_66/pen/JojNMGJ?editors=1100
for media queries I realize this

@media screen(max-width:1024px){

.content{
    display:grid;
    grid-template-areas:"first two"
                        "three four";
    grid-template-columns:repeat(2 ,1fr);
    grid-template-rows:repeat(2 ,1fr);
}

.first{
    grid-area: first;
}

.two{
    grid-area:two;
}

.three{
    grid-area:three;
}

.four{
    grid-area:four;
}

.middle{
    visibility: hidden;
}

.right{
    visibility: hidden; 
}
}


something is going wrong can I have some help please
Was this page helpful?