I'm attempting to create grids similar to the image provided below
IMAGE LINK:
However, I am experiencing an issue with DIV E being positioned almost right next to DIV D
Below is the code I have so far:
<div class="container">
<div class="row">
<div class="col-md-1">
<div class="col-md-1">A</div><br/>
<div class="col-md-1">B</div><br/>
<div class="col-md-1">C</div>
</div>
<div class="col-md-11">D<br/>
<div class="col-md-1">E</div>
</div>
</div>
</div>
I added break lines because DIV A and DIV B were displaying as one continuous element without breaks.
Would it be more appropriate to use a table for this layout?