Skip to content

Instantly share code, notes, and snippets.

@carcam
Created May 1, 2015 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carcam/4d50e287873730125df1 to your computer and use it in GitHub Desktop.
Save carcam/4d50e287873730125df1 to your computer and use it in GitHub Desktop.
Bootstrap 3 same column height
//http://stackoverflow.com/questions/23287206/same-height-column-bootstrap-3-row-responsive
$( document ).ready(function() {
var heights = $(".well").map(function() {
return $(this).height();
}).get(),
maxHeight = Math.max.apply(null, heights);
$(".well").height(maxHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment