My goal is to display two tables on the same line. To achieve this, I am using the code float: left;
. You can see an example of this in action here.
If the width of those tables exceeds that of the container, I apply overflow: hidden;
to hide the excess content.
While overflow hidden works perfectly, the tables do not remain on the same line.
You can view the issue here: http://jsfiddle.net/bULcB/3/
How can I resolve this? My objective is for the tables to stay on the same line.