Having some trouble with HTML code...
<table class="table table-condensed order-statistics">
<tr class="order-statistics-row">
<div class="row">
<div class="col-lg-4">
Order ID:
</div>
<div class="col-lg-8">
<strong>{{ $order->so_id }}</strong>
</div>
</div>
</tr>
<tr class="order-statistics-row">
<div class="row">
<div class="col-lg-4">
Invoice ID:
</div>
<div class="col-lg-8">
<strong>{{ $order->invoice_id }}</strong>
</div>
</div>
</tr>
...Additional rows here.
</table>
Interested in adding a bottom border to separate each row. Attempted CSS:
.order-statistics-row
{
border-bottom: 1pt solid black;
}
However, the border line isn't showing up. Any suggestions on how to fix this issue?