Bootstrap 4 .justify-content-*-center class


Use the justify-content-*-center class in Bootstrap 4 to center content on different screen sizes.

For different screen sizes −

justify-content-sm-center: Small Screen Size
justify-content-md-center: Medium Screen Size
justify-content-lg-center: Large Screen Size
justify-content-xl-center: Extra Large Screen Size

Let us see how to implement the justify-content-*-center 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>Vehicle</h3>
    <div class="d-flex justify-content-sm-center bg-warning mb-5">
      <div class="p-2 bg-danger">Car</div>
      <div class="p-2 bg-info">Bike</div>
      <div class="p-2 bg-secondary">Truck</div>
    </div>
    <div class="d-flex justify-content-md-center bg-warning mb-5">
      <div class="p-2 bg-danger">Car</div>
      <div class="p-2 bg-info">Bike</div>
      <div class="p-2 bg-secondary">Truck</div>
    </div>
    <div class="d-flex justify-content-lg-center bg-warning mb-5">
      <div class="p-2 bg-danger">Car</div>
      <div class="p-2 bg-info">Bike</div>
      <div class="p-2 bg-secondary">Truck</div>
    </div>
    <div class="d-flex justify-content-xl-center bg-warning mb-5">
      <div class="p-2 bg-danger">Car</div>
      <div class="p-2 bg-info">Bike</div>
      <div class="p-2 bg-secondary">Truck</div>
    </div>
  </div>
</body>
</html>

Updated on: 18-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements