I’m just starting off with HTML / CSS and was having a little trouble formatting an email link embedded in a <p> tag. What sort of CSS selector could I use to access the <a> element here?
I’d like to be able to edit it as a link, hovered over, etc., so a selector using a:link or something like it would help. Thanks!
<div id="content" class="rounded-corners">
<h2>Contact Me</h2>
<p>email: <a href="mailto:foo@bar.com">foo@bar.com</a></p>
<p>aim: deadunderdecor</p>
</div>
1 Answer