Align flex items in the end on different screen sizes in Bootstrap


Use the .justify-content-*-end class to align flex items in the end on different screen sizes like this −

For small screen size, use −

justify-content-sm-end

For medium screen size, use −

justify-content-md-end

For large screen size, use −

justify-content-lg-end

Let us see how to align flex items horizontally on small, medium and large screen sizes −

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>Form of Tea</h3>
    <div class="d-flex justify-content-sm-end bg-secondary mb-5">
      <div class="p-2 bg-warning">Black Tea</div>
      <div class="p-2 bg-info">Green Tea</div>
      <div class="p-2 bg-secondary">Indian Tea</div>
    </div>
    <div class="d-flex justify-content-md-end bg-secondary mb-5">
      <div class="p-2 bg-info">Black Tea</div>
      <div class="p-2 bg-danger">Green Tea</div>
      <div class="p-2 bg-secondary">Indian Tea</div>
    </div>
    <div class="d-flex justify-content-lg-end bg-secondary mb-5">
      <div class="p-2 bg-primary">Black Tea</div>
      <div class="p-2 bg-warning">Green Tea</div>
      <div class="p-2 bg-danger">Indian Tea</div>
    </div>
 </div>
</body>
</html>

Updated on: 18-Jun-2020

725 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements