CSS : create scrollbar when reach max height - IE and FF

.overflowdiv-dr {
   height: expression( this.scrollHeight > 449 ? "450px" : "auto" ); /* sets max-height for IE */
   max-height: 450px; /* sets max-height value for all standards-compliant browsers */
   overflow:auto;
}

apply to div,table or container etc.

0 comments:

Post a Comment