Quantcast
Channel: jun01tの日記
Viewing all articles
Browse latest Browse all 87

display: flex; で中央に寄せる方法

$
0
0
<head><linkrel="stylesheet"href="sample.css"></head><divclass="items"><divclass="item">Item01</div><divclass="item">Item02</div><divclass="item">Item03</div><divclass="item">Item04</div></div>
.items{display: flex;
    justify-content: center;
    align-items: center;
    width: 1000px;
    height: 500px;
    gap: 10px;
    background-color: green;
}.item{width: 150px;
    height: 300px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

sample


Viewing all articles
Browse latest Browse all 87

Trending Articles