Targeting a table?

I kind of want to emphasize the latest post on my category page,
http://fixmysite.us/gmpc/?cat=5
So how can I target it with CSS so I can give it a different loo as all the other posts?

HI,

If you mean the very first post then that is quite awkward as you have no hooks to target easily. You could do it by structure but it’s a bit of a fragile way to do it if the structure changes or is duplicated elsewhere.

e.g.


table table:first-child .post{background:blue}

Thanks, that worked, I was trying to play with the adjacent selectors but think your way is better.