Within my div container (multiple_prizes
in the fiddle), there are two other divs: one containing an upload button (upload_prize_img
) and the other with 3 inputs (upload_prize_form
). These two inner divs
are positioned next to each other using bootstrap columns. You can see this layout here http://jsfiddle.net/SrL49/
(By the way, I couldn't get bootstrap
to work in JSFiddle , if anyone knows how, please inform me. That's why I simulated the same effect by floating the inner divs)
In the current setup, the form
div is taller than the upload
div, which has a border. I want the upload div to match the height of the form so that the border extends from name
to amount
.
I've experimented with various combinations of setting height: 100%
on all three divs, but haven't found a solution yet. If you have a solution using the bootstrap grid, that would be ideal. But if you need to use floating divs, that's okay too.