I am working with a Bootstrap grid that consists of three columns in a row. My goal is to add a line across all columns under every row of content written in the columns.
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<div class="row">
<div class="col">
<div class="row">
<p>Some Text</p>
</div>
<hr>
<div class="row">
<p>Some Text</p>
</div>
</div>
<div class="col">
<div class="row">
<p>Some Text</p>
</div>
<hr>
<div class="row">
<p>Some Text</p>
</div>
</div>
<div class="col">
<div class="row">
<p>Some Text</p>
</div>
<hr>
<div class="row">
<p>Some Text</p>
</div>
</div>
</div>
This is the current display:
Desired display: