Skip to content

Instantly share code, notes, and snippets.

@jackilyn
Created May 5, 2012 03:35
Show Gist options
  • Select an option

  • Save jackilyn/2599401 to your computer and use it in GitHub Desktop.

Select an option

Save jackilyn/2599401 to your computer and use it in GitHub Desktop.
Equal Height Columns
/* equal height columns */
var colHeight = Math.max(
$('#main').height(),
$('#left').height(),
$('#right').height()
);
$('#main, #left, #right').height(colHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment