I tried implementing :hover
specifically on a link that's inside a paragraph.
the p.hop is hidden but when I hover over the link, nothing happens.
.hop {
display: none;
}
a.hop2:hover + .hop {
display: block;
}
<p>A <a href="https://www.noisli.com" target="_blank" class="hop2">playlist</a> for happy coding.</p>
<p class="hop">Keep your code close but your playlist closer.</p>`