Expand div when the content overflows

user370306 picture user370306 · Jun 21, 2010 · Viewed 16.1k times · Source

I have div with height="400px" and width="25px".How to expand div when the content overflows?

Answer

Salil picture Salil · Jun 21, 2010

use stylesheets and change

 width:25px;

to

 min-width:25px;

AND

 height:400px;

to

 min-height:400px;