I am finishing some Wordpress web page and I want to style (with CSS) the roll of entries in the Posts page. Wordpress creates this:
CSS
Posts
.entry:last-child { border-bottom: none; }
Let's say you have a list with links inside, and you want to get that last of the 's. Just use:
.entry:last-child a { border-bottom: none; }
This will select the last of the .entry and target it's link(s)
.entry