I would like to override following CSS styling defined for all tables:
table { font-size: 12px; width: 100%; min-width: 400px;
The best way that I've found to revert a min-width setting is:
min-width: 0; min-width: unset;
unset is in the spec, but some browsers (IE 10) do not respect it, so 0 is a good fallback in most cases. min-width: 0;