I have two DIVs, .sidebar
and .content
and I want to set .sidebar
to keep the same height with the .content.
I've tried the following:
$(".sidebar").css({'height':($(".content").height()+'px'});
$(".sidebar").height($(".content").height());
var highestCol = Math.max($('.sidebar').height(),$('.content').height());
$('.sidebar').height(highestCol);
None of these are working. For the .content
I don't have any height since will increase or decrease based on the content.
Please help me. I have to finish up a web page today and this (simple) thing is giving me headaches.
Thank you!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…