I am currently dealing with the code below:
<div class="row">
<div class="col-md-6">
<div class = "box-cell">
<p>
Slightly brief text
</p>
</div>
</div>
<div class="col-md-6">
<div class = "box-cell">
<p>
Text that<br>spans across<br;4 lines
</p>
</div>
</div>
</div>
along with this css:
.box-cell
{
position: relative;
margin: 3px;
border-style: groove ridge ridge groove;
border-width: 3px;
background-size: cover;
}
The issue I'm experiencing is that one of the cells tends to be taller than the other. Is there a way for me to make both cells take up equal height? I've searched for solutions but haven't found the right property to adjust for equal height.
Here is the jsfiddle link, although in that demo, I couldn't get the cells to display side by side as intended.
EDIT: To clarify, I want the borders to extend to the same height as the tallest cell. The examples provided remove the borders and instead color the background to create an illusion of uniformity. However, I specifically want the border to have the same height on each cell.