I have a div container (multiple_prizes
in the fiddle), that contains other two divs: one that has an upload button (upload_prize_img
) and the other one has 3 inputs (upload_prize_form
). The two inside divs
are one beside each other with bootstrap columns. As you can see here http://jsfiddle.net/SrL49/
(btw I could make bootstrap
to work in JSFiddle , if anyone knows how, please tell me. That's the reason I simulated the same effect floating the inside divs)
As you can see, the form
div is bigger than the upload
div, and the upload
div has a border. I want that div to have the same height as the form, so the border wraps from name
to amount
.
I tried almost any combination of height: 100%
in all 3 divs, anyone has a solution for this? If you can use the bootstrap grid it would be better, but if you use floating divs it's ok too.