Is there a way to eliminate the slight gap between two tbody tags when they are both displayed inline like this?
tbody
http://jsfiddle.net/kttss/
Looks like adding border-spacing: 0; to your table elements will help. Without this, there's 2 pixels surrounding each of the borders, which means there's 4 pixels between the tables.
border-spacing: 0;
table