I have some list items and in some cases I want to display a link inside the list
On the list items I'm using
to set padding. To style the linked ones I'm using
Is there anyway to set it not to have the padding on the links?
Code:
<ul class="list_name"> <li><a href=""></a></li> <li><a href=""></a></li> <li></li> </ul>
Code:
.list_name li{
padding-top: 7px;
}
Code:
.last_name li a{
}
Comment