Display Flex Justify Content Space Between in CSS

  • Post category:CSS

Get the code of Display Flex Justify Content Space Between in CSS and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<div class="container">
  <div>1</div>
  <div>2</div>
  <div>3</div>
</div>
.container {
  background: dodgerblue;
  color: white;
  display: flex;
  justify-content: space-between;
}
.container div {
  margin: 5px;
  padding: 5px 10px;
  background: white;
  color: red;
}