I have two divs side by side. I\'d like the height of them to be the same, and stay the same if one of them resizes. I can\'t figure this one out though. Ideas?
To c
Using jQuery, you can do it in a super simple one-line-script.
// HTML
// Javascript
$("#columnTwo").height($("#columnOne").height());
This is a bit more interesting. The technique is called Faux Columns. More or less you don't actually set the actual height to be the same, but you rig up some graphical elements so they look the same height.