Andrew
Andrew

Reputation: 238647

CSS: How to specify a min-width on a table?

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

Answers (1)

ghoppe
ghoppe

Reputation: 21784

Apply the min-width on a container div.

Also note: min-width can be specified for td elements.

Upvotes: 4

Related Questions