
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
Create Three Unequal Columns with Bootstrap Grid Layout
To create three unequal columns in Bootstrap, you can try to run the following code −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href="/https/www.tutorialspoint.com/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-8" style = "background-color:green; color: white;">Column One</div> <div class = "col-sm-2" style = "background-color:orange; color: white;">Column Two</div> <div class = "col-sm-2" style = "background-color:gray; color: white;">Column Three</div> </div> </div> </body> </html>
Advertisements