I need to construct a layout like the following
+-------+-----------------------------+-------+
| | | |
| | | |
| A | B | C |
| | | |
| | | |
| | | |
+-------+-----------------------------+-------+
In zone A I would like to put an image that shall be aligned to top right. In zone B I would like to put an image that shall be centered (vertical & horizontal) In zone C I would like to put an image that shall be aligned bottom left
I have the following markup.
<div style="float: left;">
<img src="/images/sx.jpg" alt="sx" height="100" width="90" />
</div>
<div class="slideshow" style="float: left;">
[...]
</div>
<div style="float: right;">
<img src="/images/dx.jpg" alt="dx" height="100" width="90" />
</div>
I have tried to use CSS vertical-align
but it does'nt work. How can I obtain what I want?
Thanks for helping