Bootstrap 4 .justify-content-* class


To align flex items, use the justify-content-* class.

Use any of the following to align flex items at the start, end, around, and between.

justify-content-start – Align Flex items at the start
justify-content-end  - Align Flex items at the end
justify-content-around – Align  flex items around on different screen sizes
justify-content-between  - Alex flex items in between on difference screen sizes

Let us see an example to set the flex items at the start −

<div class="d-flex justify-content-start bg-primary mb-5">
  <div class="p-2 bg-danger">RANK 1</div>
  <div class="p-2 bg-secondary">RANK 2</div>
  <div class="p-2 bg-warning">RANK3</div>
</div>

The following is the example to implement the justify-content-* class −

Example

Live Demo

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
</head>

<body>

<div class="container mt-3">
  <div class="d-flex justify-content-start bg-primary mb-5">
    <div class="p-2 bg-danger">RANK 1</div>
    <div class="p-2 bg-secondary">RANK 2</div>
    <div class="p-2 bg-warning">RANK3</div>
  </div>
  <div class="d-flex justify-content-end bg-info mb-5">
    <div class="p-2 bg-danger">RANK 1</div>
    <div class="p-2 bg-primary">RANK 2</div>
    <div class="p-2 bg-warning">RANK 3</div>
  </div>
  <div class="d-flex justify-content-around bg-warning mb-5">
    <div class="p-2 bg-danger">RANK 1</div>
    <div class="p-2 bg-info">RANK 2</div>
    <div class="p-2 bg-secondary">RANK 3</div>
  </div>
</div>

</body>
</html>

Updated on: 18-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements