CSS Grid
HTML
<div class="container">
<div class="item">A</div>
<div class="item">B</div>
<div class="item">C</div>
</div>
SCSS
.container {
border: #3d0000 solid thin;
display: grid;
}
.item {
padding: 12px 8px;
text-align: center;
&:nth-child(1) {
background: #ffe6e6;
}
&:nth-child(2) {
background: #ffcccc;
}
&:nth-child(3) {
background: #ffb3b3;
}
}