---
title: "How to make a multiline row grid with 2 columns and 3 columns respectively?"  
description: "How to make a multiline row grid with 2 columns and 3 columns respectively?"  
author: "Ethan Karla"  
published: 2021-07-28  
canonical: https://answers.mindstick.com/qa/93847/how-to-make-a-multiline-row-grid-with-2-columns-and-3-columns-respectively  
category: "web application"  
tags: ["web application development", "web development"]  
reading_time: 2 minutes  

---

# How to make a multiline row grid with 2 columns and 3 columns respectively?

How to make a [multiline](https://www.mindstick.com/interview/103/what-s-the-difference-between-comments-comments-and-comments) [row](https://www.mindstick.com/forum/1212/this-row-already-belongs-to-this-table) [grid](https://www.mindstick.com/forum/959/grid-in-sencha-touch) with 2 columns and 3 [columns respectively](https://www.mindstick.com/forum/156593/multiline-row-grid-with-2-columns-and-3-columns-respectively)?

## Answers

### Answer by Ravi Vishwakarma

Example

```
<!doctype html>
<html lang='en'>
<head>
    <!-- Required meta tags -->
    <meta charset='utf-8'>
    <meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'>
    <!-- Bootstrap CSS -->
    <link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css' integrity='sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm' crossorigin='anonymous'>
    <title>Grid Demo</title>
</head>
<body>
    <div class='container mt-1 text-white' >
        <div class='row bg-primary'>
            <div class='col'>
                1 of 1, we can write here col-6, col-sm-6, col-md-6, col-lg-6
            </div>
            <div class='col'>
                1 of 2,  we can write here col-6, col-sm-6, col-md-6, col-lg-6
            </div>
        </div>
        <div class='row bg-success'>
            <div class='col'>
                2 of 1, we can write here col-4, col-sm-4, col-md-4, col-lg-4
            </div>
            <div class='col'>
                2 of 2, we can write here col-4, col-sm-4, col-md-4, col-lg-4
            </div>
            <div class='col'>
                2 of 3, we can write here col-4, col-sm-4, col-md-4, col-lg-4
            </div>
        </div>
    </div>
    <script src='https://code.jquery.com/jquery-3.2.1.slim.min.js' integrity='sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN' crossorigin='anonymous'></script>
    <script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js' integrity='sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q' crossorigin='anonymous'></script>
    <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js' integrity='sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl' crossorigin='anonymous'></script>
</body>
</html>
```

Output

![How to make a multiline row grid with 2 columns and 3 columns respectively?](https://answers.mindstick.com/questionanswer/5efde2f8-1374-4ec7-bf27-a2d93b1de405/images/a2dac6c0-59cc-42b5-adbc-a47b2141daf5.png)\


---

Original Source: https://answers.mindstick.com/qa/93847/how-to-make-a-multiline-row-grid-with-2-columns-and-3-columns-respectively

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
