Reputation: 238647
I have a table that is supposed to take up 100%
of the width, but when I shrink my browser window, I also need it to obey a min-width
. However, applying a min-width
on the table has no affect (viewing in the latest version of Safari).
How can this be done?
<table width="100%" style="min-width:800px">...</table>
Upvotes: 3
Views: 113
Reputation: 21784
Apply the min-width on a container div
.
Also note: min-width can be specified for td
elements.
Upvotes: 4