Extend Floated Menu, So Height Is Matching The Content Div
I have a content div and a sidebar, the content div's height will adjust depending on the content being loaded, but I want the sidebar div to be extended all the way down, dependin
Solution 1:
You will have to use javascript for that. with Jquery it will be somehing like following.
$('#sidebar').height($('#content').height());
fiddle http://jsfiddle.net/YMFGU/9/
Post a Comment for "Extend Floated Menu, So Height Is Matching The Content Div"