Within a small <div> container that sits within a larger container, I want to put <a> links in the form of <li> tags. When I put cursor:pointer within my CSS, the hover state does not display a hand and my links are not enabled.
CSS
.black_box_contain li{
font-family:Verdana, sans-serif;
margin-left:5px;
font:inherit;
list-style:none;
margin-left:5px;
padding:0.2em;
display:inline-block; /* This will reduce space */
cursor:pointer;
}
.black_box_contain li a {
color:#0144A7;
font-size:14px;
cursor:pointer;
}
HTML
<div class="black_box_contain">North NJ Restaurants <br><br><p>Here are some of my favorite dishes. Hope you enjoy making and eating them as much as I did because they're really good!!</p> <br>
<li> Italian </li> <br>
<li> <a> French </a></li><br>
<li> <a> Mexican </a></li><br>
<li> <a> Indian </a></li><br>
<li> <a> Chinese </a></li><br>
<li> <a> Japanese </a></li><br>
</div>