HTML/CSS - 13

HTML/CSS - 13: Flexbox Fundamentals

Master Flexbox — the most useful modern way to create flexible layouts.

✦ HTML Editor
▶ Live Output
👀 Show Solution
.flex-container {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}

.box {
  flex: 1;
}