

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Create two unequal columns with Bootstrap Grid Layout
To create two unequal columns with Bootstrap Grid Layout, you can try to run the following code
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "container-fluid"> <h2>Bootstrap Grid Unequal Columns</h2> <div class = "row"> <div class = "col-sm-9" style = "background-color:blue; color: white;">Column One</div> <div class = "col-sm-3" style = "background-color:red; color: white;">Column Two</div> </div> </div> </body> </html>
- Related Questions & Answers
- Create three unequal Columns with Bootstrap grid layout
- Create Three Equal Columns with Bootstrap grid Layout
- Create Two Columns with Two Nested Columns in Bootstrap
- 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?
- CSS Grid Layout
- Define the number of columns in CSS Grid Layout
- Specify the number of columns in a CSS grid layout
- Responsive grid with Bootstrap
- Create a form that uses the horizontal layout with Bootstrap
- Change the order of the Bootstrap grid columns
- Bootstrap Grid Stacked to horizontal grid with fluid container
- Bootstrap Small Grid
Advertisements