DEV Community

Md Abdullah al noor
Md Abdullah al noor

Posted on

1 2

Answer: How to achieve 2 equal columns on desktop and 1 column on mobile with css grid

if you are go to full page it will give you two column..

check it.. maybe you are looking for this ..

.container{
 display: grid;
 grid-gap:20px;
 grid-template-columns: repeat(auto-fit, minmax(500px , 1fr)); 

}
<div class="container">
    <div class="child">It is a long established fact that a reader will be distracted

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay