
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Align Rows of Items at the Baseline in Bootstrap 4
Use the .align-items-*-baseline in Bootstrap 4 to align single rows of items at the baseline on different screens.
On different screen sizes, align single rows of items as shown below −
Align at the baseline on Small Screen Size
<div class="d-flex flex-wrap align-items-sm-baseline bg-secondary" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border">Item 3</div> <div class="p-2 border">Item 4</div> </div>
Align at the baseline on Medium Screen Size
<div class="d-flex flex-wrap align-items-md-baseline bg-secondary" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border">Item 3</div> <div class="p-2 border">Item 4</div> </div>
Align at the baseline on Large Screen Size
<div class="d-flex flex-wrap align-items-lg-baseline bg-secondary" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border">Item 3</div> <div class="p-2 border">Item 4</div> </div>
You can try to run the following code to align single rows of items at the baseline on specific screen sizes −
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"> <h1>Align Flex Items on a single row at the baseline</h1> <div class="d-flex flex-wrap align-items-baseline bg-info" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border">Item 3</div> <div class="p-2 border">Item 4</div> </div> <h2>Small Screen Size</h2> <div class="d-flex flex-wrap align-items-sm-baseline bg-secondary" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border">Item 3</div> <div class="p-2 border">Item 4</div> </div> <h2>Medium Screen Size</h2> <div class="d-flex flex-wrap align-items-md-baseline bg-info" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border">Item 3</div> <div class="p-2 border">Item 4</div> </div> <h2>Large Screen Size</h2> <div class="d-flex flex-wrap align-items-lg-baseline bg-info" style="height:200px"> <div class="p-2 border">Item 1</div> <div class="p-2 border">Item 2</div> <div class="p-2 border">Item 3</div> <div class="p-2 border">Item 4</div> </div> </div> </body> </html>
Advertisements