For those that know CSS pretty well should have no issue at all with this, but it's something I've never taken the time to learn how to do properly.
I want to create 4 boxes per row, in CSS, based on a specified sized wrapper.
So let's say we have a wrapper of 500px, how can I add in the CSS so that no matter how many boxes it creates, it only positions 4 per row (at around 120px each with 5 pixel padding).
What's the easiest way to accomplish this?
I've seen it done with listed items, but I can't remember how it's been done.
The reason I want to do this in the first place is I've always done it with tables, but I want to get away from tables as much as I can and it's less backend coding if I'm doing it the CSS route.
Thanks in advance!

