0

I'm trying to set rowspan for a div to combine rows in bootstrap. Please note that I am trying to achieve this without creating extra div and nesting a divs which are the usual methods.

<div class="container-fluid">
    <div class="row" >
        <div class="col-sm-2" style="background-color: pink;">A</div>
        <div class="col-sm-8" style="background-color: pink;">B</div>
        <div  class="col-sm-2" style="background-color: yellow;" >
        <hr/>  #Rowspan for this div#
        </div>
        <div class="col-sm-2" style="background-color: green;">C</div>
        <div class="col-sm-8" style="background-color: green;">D</div>
     </div>

Output: enter image description here

Expected Output: enter image description here

Bhavani Kannan
  • 118
  • 1
  • 2
  • 10

0 Answers0