Trying to create four button equal to each.Not sure which bootstrap column class should i use to get the desired output.I am using bootstrap 4.I tried using col class of bootstrap but failed.Here is the desired output which i need:
Code :
<div class="row">
<div class="col">
<a class="btn btn-primary" href="#">Customised</a>
</div>
<div class="col">
<a class="btn btn-primary" href="#">Unique</a>
</div>
<div class="w-100"></div>
<div class="col">
<a class="btn btn-primary" href="#">Comprehensive</a>
</div>
<div class="col">
<a class="btn btn-primary" href="#">Discounts</a>
</div>
</div>
I will appreciate it If someone suggest me the right way to do it.