Bonjour,
je souhaiterai créer un fichier css qui aurait pour même résultat que :
j'ai tenté en CSS :
Avec en HTML :
... mais ça ne marche pas !!
Merci d'avance pour votre aide !!
je souhaiterai créer un fichier css qui aurait pour même résultat que :
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30%" bgcolor="#00FF66"> </td>
<td width="760px" bgcolor="#000000"><img src="spacer.gif" width="760px"></td>
<td width="30%" bgcolor="#CC0000"> </td>
</tr>
</table>
j'ai tenté en CSS :
#blog {MARGIN:0px auto; WIDTH:100%; height:100%; background-color:grey;}
#marge_gauche { float:left; position:relative; height:100%; width:10%; background-color:green;}
#conteneur{ float:left dashed; position:relative; margin-left:10%; WIDTH:760px; height:600px; background-color:red;}
#marge_droite { float:right; margin-top:-600px; position:static; height:100%; width:10%; background-color:blue;}
Avec en HTML :
<div id="blog">
</div>
<div id="marge_gauche"></div>
<div id="conteneur">
<img src="spacer.gif" width="760px">
</div>
<div id="marge_droite"></div>
... mais ça ne marche pas !!
Merci d'avance pour votre aide !!