I have speaker lists generated dynamically. After each member, I show li, which displays the VS inside it. However, the most recent ul li in the div match should not be visible. Any ideas how I can do this? HTML
<style>
.match {
}
.match ul {
}
.match ul li {
float: left;
margin-right: 50px;
}
.match ul li:last-child {
display: none;
}
</style>
<div class="content">
<div class="match">
<ul>
<li><a href="/wade-barrett/member">Wade Barrett</a></li>
<li style="">VS</li>
</ul>
<ul>
<li><a href="/shaemus/member">Shaemus</a></li>
<li style="">VS</li>
</ul>
<ul>
<li><a href="/randy-orton/member">Randy Orton</a></li>
<li style="">VS</li>
</ul>
<ul>
<li><a href="/john-cena/member">John Cena</a></li>
<li style="">VS</li>
</ul>
<ul>
<li><a href="/edge/member">Edge</a></li>
<li style="">VS</li>
</ul>
<ul>
<li><a href="/chris-jericho/member">Chris Jericho</a></li>
<li style="">VS</li>
</ul>
<p class="clear"></p>
</div>
</div>
azz0r source
share