
Kirk S. answered 08/14/19
Tutor
5
(1)
Style expert
So you have to use proper mark up <li><a href=""></a></li>
then you use a css trick. if you give that a a certain class such as clickMe <a class="clickMe" href="">
Then you can use css to make it clickable all around it.
.clickMe {
text-decoration: none;
display: block;
width: 100%;
height: 100%;
}