je veux faire ceci : http://cineblog.spipu.net/_test/
bon, pas de pb, vu que je l'ai fait

seulement voila, je trouve que ca fait beaucoup de CSS et d'HTML pour si peu.. d'où ma question : est-ce que je pourrais simplifier le css et l'html ?
voici le css : http://cineblog.spipu.net/_test/css/style.css
voici le code HTML :
<?php $width = '500'; $height = '300'; $haut = "Titre de la fenetre"; $milieu = "Plein de contenus et autre"; $bas = "bas de page"; ?> <div style="width: <?php echo $width; ?>px; height: <?php echo $height; ?>px; overflow: auto"> <table class="fenetre_popup" cellpadding="0" cellspacing="0"> <tr> <td> <table class="top" cellpadding="0" cellspacing="0"> <tr> <td class="left"><img src="./imgs/spacer.gif" alt="" height="22" width="22"></td> <td class="middle"><?php echo $haut; ?></td> <td class="right"><img src="./imgs/spacer.gif" alt="" height="22" width="124"></td> </tr> </table> <table class="middle" cellpadding="0" cellspacing="0" style="height: <?php echo ($height-5-22-22); ?>px"> <tr> <td><?php echo $milieu; ?></td> </tr> </table> <table class="bottom" cellpadding="0" cellspacing="0" > <tr> <td><?php echo $bas; ?></td> </tr> </table> <table class="shadow" cellpadding="0" cellspacing="0"> <tr> <td class="left"><img src="./imgs/spacer.gif" alt="" height="4" width="8"></td> <td class="middle"><img src="./imgs/spacer.gif" alt="" height="4" width="8"></td> <td class="right"><img src="./imgs/spacer.gif" alt="" height="4" width="8"></td> </tr> </table> </td> </tr> </table> </div>
vous en pensez quoi ?