Just starting out with HTML and CSS and eager to learn a new skill.
I'm attempting to target the "Read More" anchor tag that is nested within an anchor and li tag. I've been struggling to figure out the descendant selector in CSS that will allow me to select this specific tag. Any assistance would be greatly appreciated. Ideally, I'd like to achieve this without adding any extra classes or IDs.
The code can be found below.
`<ul>
<li class="Directory">
<a href="#">
<img class="icon" src="images/folder.png">
<h4>Directory</h4>
<h5>Map View, Locations,<br>Companies,Vendors</h5>
<img class="line" src="images/line.png">
<p>Pellentesque ac dui elit. Ut sollicitudin faucibus tellus ut rutrum. Nam pretium fringilla dignissim.</p>
<a href="#" >Read More</a>
</a>`