jQuery+CSS让两栏/多栏布局高度自动一致
http://www.shejidaren.com/css-auto-height-of-the-column.html
var m = Math.max(
$('.main').height(),
$('.sidebar').height(),
$('.sidebar2').height()
);
$('.content').height(m);
http://www.shejidaren.com/css-auto-height-of-the-column.html
var m = Math.max(
$('.main').height(),
$('.sidebar').height(),
$('.sidebar2').height()
);
$('.content').height(m);