Bootstrap 4 .justify-content-*-end class


To justify the flex items on the end, use the justify-content-end class.

To justify the flex items on the end, on different screen sizes, use the justify-content-*-end class. The flex items justified at the end would be visible like the following on different screen sizes −

Small Screen Size

<div class="d-flex justify-content-sm-end bg-danger mb-5">
  <div class="p-2 bg-primary">Alabama</div>
  <div class="p-2 bg-info">New York</div>
  <div class="p-2 bg-secondary">Texas</div>
</div>

Medium Screen Size

<div class="d-flex justify-content-md-end bg-danger mb-5">
  <div class="p-2 bg-primary">Alabama</div>
  <div class="p-2 bg-info">New York</div>
  <div class="p-2 bg-secondary">Texas</div>
</div>

Let us see the complete code and learn how to work with justify-content-*-end 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">
      <h3>US</h3>
      <div class="d-flex justify-content-sm-end bg-danger mb-5">
        <div class="p-2 bg-primary">Alabama</div>
        <div class="p-2 bg-info">New York</div>
        <div class="p-2 bg-secondary">Texas</div>
      </div>
      <div class="d-flex justify-content-md-end bg-danger mb-5">
        <div class="p-2 bg-primary">Alabama</div>
        <div class="p-2 bg-info">New York</div>
        <div class="p-2 bg-secondary">Texas</div>
      </div>
      <div class="d-flex justify-content-lg-end bg-danger mb-5">
        <div class="p-2 bg-primary">Alabama</div>
        <div class="p-2 bg-info">New York</div>
        <div class="p-2 bg-secondary">Texas</div>
      </div>
  </div>
</body>
</html>

Updated on: 17-Jun-2020

478 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements