Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Bootstrap Small Grid

What is the role of small grid Bootstrap? How can I use it to create a grid for small devices?



1 Answer
Anvi Jain

To create a Bootstrap Grid for small devices is what we call small grid

You can try to run the following code to implement this:

Example

Live Demo

<!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">
         <h1>Grid</h1>
         <div class = "row">
            <div class = "col-sm-3" style = "background-color:orange; color: white">
               This is demo text. This is demo text. This is demo text. 
               This is demo text. This is demo text. This is demo text. 
               This is demo text. This is demo text. This is demo text. 
               This is demo text. This is demo text. This is demo text. 
               This is demo text.
            </div>
            <div class = "col-sm-9" style="background-color:red; color: white">
               This is demo text. This is demo text. This is demo text. 
               This is demo text. This is demo text. This is demo text. 
               This is demo text. This is demo text. This is demo text. 
               This is demo text. This is demo text. This is demo text. 
               This is demo text.
            </div>
         </div>
      </div>
   </body>
</html>
Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.