I am having trouble with my hr tag elements in the table I created - they are not spanning the full width like the line above them. I have tried adjusting the width property but it doesn't seem to be working. Can anyone offer advice or guidance on how to resolve this issue?
#thing {
border-style: solid;
width: 50%;
}
<div class="container-fluid bg-white py-4">
<div class="container">
<div class="tab-pane fade show active" id="thing" role="tabpanel" aria-labelledby="home-tab">
<p>
</p>
<hr>
<ol>
<li>
</li>
<p>
</p>
<hr>
<li>
</li>
<p>
</p>
<hr>
<li>
</li>
<p>
</p>
<hr>
</ol>
</div>
</div>
</div>