- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 Two Columns with Two Nested Columns in Bootstrap
To create two columns in two nested columns, 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> <h2>Nested Columns</h2> <div class = "row"> <div class = "col-sm-9" style = "background-color:orange;"> Column1 <div class="row"> <div class = "col-sm-6" style="background-color:orange; color:white;">nested column</div> <div class = "col-sm-6" style="background-color:orange; color:white;">nested column</div> </div> </div> <div class = "col-sm-3" style="background-color:red;">Column2</div> </div> </body> </html>
- Related Articles
- Create two unequal columns with Bootstrap Grid Layout
- Create three unequal Columns with Bootstrap grid layout
- Create Three Equal Columns with Bootstrap grid Layout
- How to create a column with ratio of two columns in R?
- Concatenate two columns in MySQL?
- Display two different columns from two different tables with ORDER BY?
- Offset Columns in Bootstrap
- Nesting Columns in Bootstrap
- Update two columns with a single MySQL query
- Group across two columns in MongoDB?
- Move columns to the right with Bootstrap
- Two columns as primary key with auto-increment in MySQL?
- Combine two columns in R data frame with comma separation.
- Create bar plot for grouped data of two columns in base R.
- How to create a column with ratio of two columns based on a condition in R?

Advertisements