There is always a little space under images inside a table
css
Solution
Problem isn't the table actually, img tags are inline elements and have that bottom spacing by default (something with line-height I guess, don't really know why).
Solution: `div.browseBuilds tr.browseBuilds_piece img { display: block; }`
Problem
I'll provide direct link for people who wants to see it live. Just hover one of the table listing and you'll see there is always a small space under images. I've tried padding, margin, searched stackoverflow for it and used border spacing, border collapse etc. but nothing helped so far. I would like your help. What's the problem and what am I missing?