Search code examples
csshtmloverflowexpand

Expand div when the content overflows


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


Solution

  • use stylesheets and change

     width:25px;
    

    to

     min-width:25px;
    

    AND

     height:400px;
    

    to

     min-height:400px;