Hello à toutes (?) et à tous
Une image valant mieux qu'un long discours, en voici deux :
Sous FF et Opera la liste est bien calée :
http://i14.tinypic.com/30li9ox.png
Sous IE (6 et 7), elle est décalée :
http://i14.tinypic.com/2ce12s6.png
Le code HTML est le suivant :
et sa CSS :
Le tout est visible sur cette page.
C'est pas dramatique mais tant qu'à faire propre j'aimerais bien régler le problème et apprendre pourquoi le comportement à cet endroit diffère entre IE et ses collègues.
Bonne journée
Modifié par Sventovit (13 Jan 2007 - 11:12)
Une image valant mieux qu'un long discours, en voici deux :
Sous FF et Opera la liste est bien calée :
http://i14.tinypic.com/30li9ox.png
Sous IE (6 et 7), elle est décalée :
http://i14.tinypic.com/2ce12s6.png
Le code HTML est le suivant :
<div class="part_cssbox"> <div class="part_cssbox_head">
<h2 class="cartouche">LISTE DES COURSES </h2>
</div>
<div class="part_cssbox_body">
<ul id="part_cart">
<li>1 botte de radis </li>
<li>1 concombre </li>
<li>2 harengs </li>
<li>1 camenbert </li>
</ul>
</div>
</div>
et sa CSS :
.ent_cssbox, .ent_cssbox_body, .ent_cssbox_head, .ent_cssbox_head h2 { background: transparent url(images/ent_orange_box.png) no-repeat right bottom; }
.ent_cssbox {
width: 280px !important; /* intended total box width - padding-right(next) */
width: 265px; /* IE Win = width - padding */
padding-right: 15px; /* the gap on the right edge of the image (not content padding) */
margin: 20px 40px 20px auto; /* use to position the box */
float: right;
clear: right;
} /* set the top-right image */
.ent_cssbox_head { background-position: top right; margin-right: -15px; /* pull the right image over on top of border */ padding-right: 40px; /* right-image-gap + right-inside padding */ } /* set the top-left image */
.ent_cssbox_head h2 { background-position: top left; margin: 0; /* reset main site styles*/ border: 0; /* ditto */ padding: 25px 0 15px 40px; /* padding-left = image gap + interior padding ... no padding-right */ height: auto !important; height: 1%; /* IE Holly Hack */ } /* set the lower-left corner image */
.ent_cssbox_body { background-position: bottom left; margin-right: 25px; /* interior-padding right */ padding: 15px 0 15px 0px; /* mirror .cssbox_head right/left */ }
#ent_cart li{
list-style:square outside;
margin:0 0 4px 0;
padding:0;
color: #2973D4;
font-weight: bold;
font-size: 12px;
}
Le tout est visible sur cette page.
C'est pas dramatique mais tant qu'à faire propre j'aimerais bien régler le problème et apprendre pourquoi le comportement à cet endroit diffère entre IE et ses collègues.
Bonne journée
Modifié par Sventovit (13 Jan 2007 - 11:12)