Posted by Aioe on 10/07/05 01:24
A php script returns an output like this:
<div class="sinistra">
<dl>
<dt>qualcosa</dt>
<dd>altro</dd>
[...]
</dl>
</div>
<div class="destra">
<dl>
<dt>qualcosa</dt>
<dd>altro</dd>
[...]
</dl>
</div>
i need a way to display these structures in two parallel columns (somewhat
like the result of:
<table>
<tr>
<td>
[contents of first div structure]
</td>
<td>
[contents of second div structure]
</td>
</tr>
</table>
is this possibile using *only* the css styles? If so, how can i *vertically*
align these div structures? (they must start in the same row)
thank you
cheers
[Back to original message]
|