I have a right column on my page that has varying heights, set as height: auto;
I also have a left content section, that I want to mimic the height of my right column.
How can I do this using css, jquery, or some other code?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This jQuery snippet will take the height of
#primaryand apply it to#sidebar, syncing the height of both elements.http://jsfiddle.net/pUXCE/4/ <– working example.