How to achieve vertical lines

Hi,

Can someone help me to achieve vertical lines for customer info details in print format

Thanks
Santhosh

Maybe you can use css something like:

<div class="vertical-line">
    <div>Date:</div>
    <div>Customer Address:</div>
</div>

<style>
.vertical-line {
  border-left: 1px solid black;
  height: 50px;
}
</style>
1 Like