Set div tag height, on condition

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

Answers (2)

voodoo417
voodoo417

Reputation: 12101

cross

min-height: 100px; 
height:auto !important; 
height: 100px; 

Upvotes: 1

Ashwini Agarwal
Ashwini Agarwal

Reputation: 4858

Apply following style..

 style='min-height:100px;'

Upvotes: 1

Related Questions