Tag Archives: height

How to Equalize Heights of Divs

  var maxHeight = 0;   $("div").each(function(){    if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } });   $("div").height(maxHeight);  
Posted in jQuery | Also tagged , | Leave a comment

Cross browsers Min-Height

CSS   myDiv { min-height:500px; height:auto; !important height:500px; }  
Posted in CSS | Also tagged , , | 1 Comment