décidément, je galère.
l'option clear:both n'est pas interprétée de la même façon sur IE6 et sur Firefox...
j'ai 3 blocs en float left (donc les uns à côté des autres) :
A B C
et les blocs suivant (D E F et G), je veux les mettre en dessous,
on obtiend donc :
A B C
D E F G
et au niveau du bloc D, je fais donc un clear:both et un float:left
et bien je n'ai pas le mêm rendu sur IE6 et firefox.
Sur IE6 ça marche parfaitement.
mais sur firefox, les bloc D E F G sont tout en bas de ma page???
je vous file mon code :
please, help me
Modifié par samb01 (23 Jan 2006 - 21:26)
l'option clear:both n'est pas interprétée de la même façon sur IE6 et sur Firefox...
j'ai 3 blocs en float left (donc les uns à côté des autres) :
A B C
et les blocs suivant (D E F et G), je veux les mettre en dessous,
on obtiend donc :
A B C
D E F G
et au niveau du bloc D, je fais donc un clear:both et un float:left
et bien je n'ai pas le mêm rendu sur IE6 et firefox.
Sur IE6 ça marche parfaitement.
mais sur firefox, les bloc D E F G sont tout en bas de ma page???
je vous file mon code :
.titre_image
{
width:99px;
height:20px;
border: 1px solid #000000;
color: rgb(243,65,243);
margin-top:2px;
margin-left:1px;
text-align:center;
padding-top:3px;
float:left;
}
.titre_intitule
{
width:300px;
height:20px;
border: 1px solid #000000;
color: rgb(243,65,243);
margin-top:2px;
text-align:center;
padding-top:3px;
float:left;
}
.titre_prix
{
width:50px;
height:20px;
border: 1px solid #000000;
color: rgb(243,65,243);
margin-top:2px;
text-align:center;
padding-top:3px;
float:left;
}
.image
{
clear:both;
margin-top:9px;
margin-left:1px;
float:left;
}
.intitule
{
margin-top:9px;
margin-bottom:5px;
margin-left:3px;
width: 300px;
height: 15px;
text-align:center;
border: 1px solid #000000;
padding-bottom:2px;
float:left;
}
.resume
{
/*margin-top:5px;*/
width: 300px;
height: 64px;
border: 1px solid #000000;
float:left;
margin-left:3px;
}
.prix
{
width: 50px;
height: 39px;
border: 1px solid #000000;
float:left;
text-align:center;
color:white;
font-weight: bold ;
background-color: :#868486 ;
/*line-height:70px;*/
margin-left:3px;
padding-top:25px;
}
please, help me
Modifié par samb01 (23 Jan 2006 - 21:26)