“html div grid 9x9” Ответ

html div grid 9x9

.grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.cell {
  flex: 0 0 33%;
  height: 100px;
  width: 100px;
  margin-bottom: 5px;
}
Worrisome Weevil

html div grid 9x9

<div class="grid">
  <div class="cell" style="background-color: green">1</div>
  <div class="cell" style="background-color: red">1</div>
  <div class="cell" style="background-color: blue">1</div>
  <div class="cell" style="background-color: yellow">1</div>
</div>
Worrisome Weevil

Ответы похожие на “html div grid 9x9”

Вопросы похожие на “html div grid 9x9”

Больше похожих ответов на “html div grid 9x9” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования