Well, I want to display 3 divs like this:
[ DIV 1 ] [ ]
[ ] [ DIV 2 ]
[ DIV 3 ] [ ]
But, for some reason this happens:
[ DIV 1 ] [ ]
[ ] [ DIV 2 ]
[ ]
[ DIV 3 ]
There is a JSFiddle showing what I mean: https://jsfiddle.net/4mmdamak/
And there is a possible solution using position relative and negative margin top: https://jsfiddle.net/4mmdamak/1/
I don't want to use margin tops because I don't know the height of the second div, so, I don't know how many pixels I have to rise the third div.
Also, I tried using vertical-align: top;
on the third div, but this is useless.
PD: I can't put the third div inside the first div.
PD2: Also, I can't create an table with two td tags with rowspan 2.
So, if you have any other solution... Thanks!