DEV Community

MoonLight
MoonLight

Posted on

3 2

Grid

grid examples
Image description

Image description

also we can write like this

.container{
    display:grid;
    /*grid-template-rows: 100px 100px 100px;*/
    grid-template-rows:repeat(3,100px);
    /*grid-template-columns: 100px 100px;*/
    grid-template-columns: repeat(2,100px);
    border: 3px solid lightgray;
}
Enter fullscreen mode Exit fullscreen mode


Image description

reminder
aligning items
Image description

.container{
    display:grid;
    /*grid-template-rows: 100px 100px 100px;*/
    grid-template-rows:repeat(3,100px);
    /*grid-template-columns: 100px 100px;*/
    grid-template-columns: repeat(2,100px);
    border: 3px solid lightgray;
    /* 💛 */
    justify-items: center;
}
Enter fullscreen mode Exit fullscreen mode

Image description

.container{
    display:grid;
    /*grid-template-rows: 100px 100px 100px;*/
    grid-template-rows:repeat(3,100px);
    /*grid-template-columns: 100px 100px;*/
    grid-template-columns: repeat(2,100px);
    border: 3px solid lightgray;
    /* 💛 */
    justify-items: center;
    align-items: center;
}  
Enter fullscreen mode Exit fullscreen mode

Image description

.container{
    display:grid;
    /*grid-template-rows: 100px 100px 100px;*/
    grid-template-rows:repeat(3,100px);
    /*grid-template-columns: 100px 100px;*/
    grid-template-columns: repeat(2,100px);
    border: 3px solid lightgray;
    /* 1️⃣ */
    justify-items: center;
    align-items: center;
    /* 2️⃣ */
    justify-content: center;
}
Enter fullscreen mode Exit fullscreen mode

Image description

Image of Datadog

Create and maintain end-to-end frontend tests

Learn best practices on creating frontend tests, testing on-premise apps, integrating tests into your CI/CD pipeline, and using Datadog’s testing tunnel.

Download The Guide

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

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

Okay