Is it possible to resize right div to the height of left one using just CSS?
My Example
I've tried a jQuery approach like this:
$(document).ready(function () {
$("#right").css("height", $("#left").height());
});
This approach isn't working well because I have dynamically loaded content in the left div and jQuery approach sometimes miscalculates the height.
I also tried height:100%
on the right div but it didn't work.