Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Selected Reading
Bootstrap 4 .justify-content-*-start class
Use the justify-content-start class in Bootstrap to justify content in the beginning.
The justify-content-*-start class is used in Bootstrap to justify content in the beginning on different screen sizes like the following on small, medium, and large screen sizes −

You can try to run the following code to implement the justify-content-*-start class −
Example
<!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>Entertainment</h3> <div class="d-flex justify-content-sm-start bg-info mb-5"> <div class="p-2 bg-danger">Bollywood</div> <div class="p-2 bg-secondary">Tollywood</div> <div class="p-2 bg-warning">Hollywood</div> </div> <div class="d-flex justify-content-md-start bg-info mb-5"> <div class="p-2 bg-secondary">Bollywood</div> <div class="p-2 bg-warning">Tollywood</div> <div class="p-2 bg-primary">Hollywood</div> </div> <div class="d-flex justify-content-lg-start bg-info mb-5"> <div class="p-2 bg-secondary">Bollywood</div> <div class="p-2 bg-warning">Tollywood</div> <div class="p-2 bg-primary">Hollywood</div> </div> </div> </body> </html>
Advertisements
