<ul>
<li>
<h2>Unicorns</h2>
<p>Mythical horse-like creatures with a large single horn protruding from the centre of their heads.</p>
<a href="#">More about unicorns</a>
</li>
<li>
<h2>Narwhals</h2>
<p>Whales with a single horn protruding from their head.</p>
<a href="#">More about unicorns</a>
</li>
</ul>
CSS
li {
display: flex;
flex-direction: column;
justify-content: space-between;
}
p {
margin-bottom: auto;
}