Is there a method to customize only the hyperlinks that appear before the line break element?
I am interested in customizing Link 1 and Link 2 exclusively.
<ul>
<li>
<a href="#">Link 1</a> and <a href="#">Link 2</a>
<br>
word word word word word word <a href="#">Link 3</a>
</li>
</ul>
I acknowledge I could easily inline the style, but I am curious if there is an alternative approach to accomplish this.