Hi there,
Try setting up your HTML like this:
<div class="archive-line">
<span class="archive-name"><a href="https://robinharford.com/cecily-parsley/">Cecily</a></span>
<span class="archive-border"></span>
<span class="archive-date">November 2nd</span>
</div>
Then add this CSS:
.archive-line {
display: flex;
font-style: italic;
}
.archive-border {
flex-grow: 1;
height: 1px;
background: aliceblue;
align-self: center;
margin-left: 20px;
margin-right: 20px;
border-bottom: 1px dotted #ddd;
}
Hope this helps 🙂