I'm new to CSS, and I'm trying to put two transparent boxes in the right position one over the other (vertically align), I tried a lot of solutions but right now I'm stuck...
|
|
Try to put them into third, container box and set its dimensions to:
Then set "float: right" for both inner boxes. |
|||||||||||
|
|
Well the the way you define your problem you leave a lot to be debated as to what your attempting to do, as there are any number of methods some better suited over others dependent upon the need. Also almost everything is transparent until otherwise defined. For example you can have a box within a box
This will make the boxes appear in the same place. Grant it you need to define a hight and width to give it some dimension. But outside of that one on top of the other. there is also for another example
this one will literally make 2 elements side by side as far as the writing of the code goes, but the inline style z-index will make one on top of the other. But again there is still more methods Im sure some I can't even think of. But in all its all dependent upon your final needs as to what will better suit you in the long run. EDIT If I understand you through your comments then you basically want my second concept originally posted, of course changed a bit so its in the right and not the left. If this is the case check out this demo on jsfiddle.net to see if this is what your looking for. http://jsfiddle.net/hEEGd/ |
|||||||||||
|