<div class="grid">
<div class="item"></div>
</div>
.grid {
display: grid;
grid-template-columns: 200px 200px;
grid-template-rows: 200px 200px;
grid-template-areas: 'a b'
'c d';
/*对齐单元格的起始位置 */
justify-items:center;
align-items: center;
}
.item {
width: 100px;
height: 100px;
background: #80cac8;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.