<div class="container">
<div class="item">
<div class="title">Вес</div>
<div class="block">1</div>
</div>
<div class="item">
<div class="title">Д</div>
<div class="block">2</div>
</div>
<div class="item">
<div class="title">Ш</div>
<div class="block">3</div>
</div>
</div>
.container {
/* контейнер для того чтобы выстроить блоки в ряд */
display: flex; /* флексим */
justify-content: space-between; /* равномерно разбиваем item */
width: 600px;
}
.title {
text-align: center; /* центрируем тайтл */
}
.block {
background-color: green;
display: flex; /* Простое выравниевание текста в квадрате */
justify-content: center; /* Смотри выше */
align-items: center; /* Смотри выше */
width: 100px;
height: 100px;
font-size: 32px;
color: white;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.