 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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 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>
Advertisements
 