- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create Three Equal Columns with Bootstrap grid Layout
To create three equal columns layout with Bootstrap Grid Layout, you can try to run the following code −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link rel="stylesheet" ref="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> </head> <body> <div class = "container-fluid"> <h2>Bootstrap Grid</h2> <div class = "row"> <div class = "col-sm-4" style = "background-color:green; color: white;">Column One</div> <div class = "col-sm-4" style = "background-color:orange; color: white;">Column Two</div> <div class = "col-sm-4" style = "background-color:gray; color: white;">Column Three</div> </div> </div> </body> </html>
Output
- Related Articles
- Create three unequal Columns with Bootstrap grid layout
- Create two unequal columns with Bootstrap Grid Layout
- How to create a 2-column layout grid with CSS?
- How to create a 3-column layout grid with CSS?
- How to create a 4-column layout grid with CSS?
- How to create a mixed column layout grid with CSS?
- Define the number of columns in CSS Grid Layout
- Specify the number of columns in a CSS grid layout
- Create Two Columns with Two Nested Columns in Bootstrap
- Create a form that uses the horizontal layout with Bootstrap
- Java program to create three vertical columns with equal number of buttons in GridLayout
- CSS Grid Layout
- Set Flex Items into equal width columns with Bootstrap
- Change the order of the Bootstrap grid columns
- Responsive grid with Bootstrap

Advertisements