I am trying to design a page where there are some tables. It seems that styling tables is much more painful than it ought to be.
The problem is the following: The ta
Add display:block; to the table's css. (in other words.. tell the table to act like a block element rather than a table.)
display:block;
fiddle here