"Div Basic tabel"
Bootstrap 4.1.1 Snippet by dkstudio

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="boxer"> <div class="box-row"><!--Headings--> <div class="box">Client / Invoice Number</div> <div class="box">Payment Date</div> <div class="box">Type / Internal Notes</div> <div class="box text-right pr-4">Amount / Currency</div> </div> <div class="box-row"> <div class="box">Orion infosolutions <br/> <small class="text-primary">000001</small></div> <div class="box">15/08/2020</div> <div class="box ebay"> Cash <br/> <small class="text-black-50">Lorem Ipsum is simply dummy is simply dummy</small></div> <div class="box google"> Rs.10,000.00 <span class="text-black-50">INR</span> </div> </div> </div>
.boxer { display: table; border-collapse: collapse; } .boxer .box-row { display: table-row; } .boxer .box-row:first-child { font-weight:bold; } .boxer .box { display: table-cell; vertical-align: top; border: 1px solid black; padding: 5px; font-family:monospace; } .boxer .ebay { padding:5px 1.5em; } .boxer .google { padding:5px 1.5em; } .boxer .amazon { padding:5px 1.5em; } .center { text-align:center; } .right { float:right; }

Related: See More


Questions / Comments: