When dealing with 3-4 nested classes in HTML, what is the most effective method for targeting the innermost class when applying CSS styles?
<div class="head">
<form class="newmem">
<input type="text" name"Firstname" value="First Name">
<a class="SignUp" href="some link"> Sign up</a>
</form>
If I want to style the sign up button, should I use ".head SignUp" or ".head newmem signup" in my CSS?