I have a list of images/ text links,
<ul>
<li>link 1</li>
<li>link 2</li>
<li>link 3</li>
<li>link 4</li>
<li>link 5</li>
<li>link 6</li>
<li>link 7</li>
<li>link 8</li>
</ul>
and I style the list in my .css file,
li {
float:left;
margin:0px 5px 5px 0px;
}
but then I want the last 4 items in the list to be displayed without the 5px space at their margin bottom. so I would like to use jqeury to select these last 4 item and change their css style to marginBottom:0px;
the problem is that this is how jquery select the last item,
li:last
but what about the last 4? or maybe the last 5, or 6?
thanks.
