Here is the HTML snippet I am working with:
.entry{
border: 1px solid gray;
}
.list_number{
color: red;
border: 1px dashed gray;
margin-right: 5px;
}
.entry_body{
border: 1px solid green;
}
<div class="entry">
<span class="list_number">1.</span> only before noun very great, or complete used for emphasizing an opinion, feeling, or statement
<div class="entry_body">The way they’ve been treated is an absolute disgrace.<br/>
I have absolute confidence in her.<br/>
You’re talking absolute nonsense.<br/>
</div>
</div>
Is there a way to align the left border of .entry_body
to the right border of .list_number
?