I am struggling to recreate a specific view using Bootstrap. The image of the view I want to achieve can be seen here:
https://i.sstatic.net/VtaMc.png
My attempt at coding this view using Bootstrap is as follows:
<div class="col-md-12">
<div class="col-md-2" style="background: #fff; border-right: 1px solid #e0e2e4; height: 100vh; ">
</div>
<div class="col-md-1" style="background: #e0e2e4; border-right: 1px solid #e0e2e4; height: 100vh; ">
</div>
<div class="col-md-9" style="background: #fff; border-right: 1px solid #e0e2e4; height: 100vh; " >
</div>
</div>
Unfortunately, my attempt did not produce the desired result. Can anyone please provide guidance on how to properly create this view?