Reputation: 1045
I have div tag, I want make so: if content div tag is low than 100px, set div tag height exactly 100px. but if content height is higher than 100px - set div tag height automatically, please tell me css for this.
Upvotes: 1
Views: 294
Reputation: 12101
cross
min-height: 100px;
height:auto !important;
height: 100px;
Upvotes: 1