Bonjour,
alors voila, je suis en train de faire une page avec un bloc fixé à 800px, une bordure de 2px et dont les angles sont arrondis par des petits gifs.
je traduis en captures d'écrans.
Le résultat voulu vu par Firefox :
http://www.bamboule.org/exemple_firefox3.gif
Le même code vu par ie7
http://www.bamboule.org/exemple_ie3.gif
et voila le code en question :
index.php
le css
Le bloc en question qui ne se positionne pas est header_line_h_b
Savez vous comment harmoniser ceci svp ?
Merci d'avance
Kalber
alors voila, je suis en train de faire une page avec un bloc fixé à 800px, une bordure de 2px et dont les angles sont arrondis par des petits gifs.
je traduis en captures d'écrans.
Le résultat voulu vu par Firefox :
http://www.bamboule.org/exemple_firefox3.gif
Le même code vu par ie7
http://www.bamboule.org/exemple_ie3.gif
et voila le code en question :
index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
(...)
<body bgcolor="#28C264">
<div class="bg_l" ></div>
<div class="bg_r" ></div>
<center>
<div class="content">
<div class="header_up_left">
</div>
<div class="header_up_right">
</div>
<div class="header_down_left">
</div>
<div class="header_down_right">
</div>
<div class="header_line_h_t">
</div>
<div class="header_line_v_l">
</div>
<div class="header_line_v_r">
</div>
<div class="header_line_h_b">
</div>
</div>
</center>
</body>
le css
.bg_l {
position: absolute;
top: 0px;
left:0px;
width:237px;
height: 100%;
background-image: url("/pics/bg_l.gif");
background-repeat: repeat-x;
background-repeat: repeat-y;
z-index:300;
}
.bg_r {
position: absolute;
top: 0px;
right:0px;
width:237px;
height: 100%;
background-image: url("/pics/bg_r.gif");
background-repeat: repeat-x;
background-repeat: repeat-y;
z-index:300;
}
.content {
width: 800px;
height: 100%;
position: relative;
left : 0px;
top : 0px;
z-index: 400;
background: #B1F5D4;
}
.header_up_left {
position: absolute;
left : 0px;
top : 0px;
height: 12px;
width: 12px;
z-index: 500;
background-image: url("pics/up_left.gif");
background-repeat: repeat-x;
}
.header_up_right {
position: absolute;
right : 0px;
top : 0px;
z-index: 500;
height: 12px;
width: 12px;
background-image: url("pics/up_right.gif");
background-repeat: repeat-x;
}
.header_down_left {
position: absolute;
left: 0px;
bottom: 0px;
height: 12px;
width: 12px;
z-index: 450;
background-image: url("pics/down_left.gif");
background-repeat: repeat-x;
margin-top: 0px;
padding-top: 0px;
}
.header_down_right {
position: absolute;
right: 0px;
bottom: 0px;
z-index: 450;
height: 12px;
width: 12px;
background-image: url("pics/down_right.gif");
background-repeat: repeat-x;
margin-top: 0px;
padding-top: 0px;
}
.header_line_h_t {
position: absolute;
height: 2px;
width: 100%;
top : 0px;
left : 0px;
background-image : url("pics/black_h.gif");
background-repeat: repeat-x;
z-index: 400;
}
.header_line_h_b {
position: absolute;
height: 2px;
width: 100%;
bottom : 0px;
left : 0px;
background-image : url("pics/black_h.gif");
background-repeat: repeat-x;
z-index: 400;
margin-bottom: 0px;
padding-bottom: 0px;
}
.header_line_v_l {
position: absolute;
height: 100%;
width: 2px;
top : 0px;
left : 0px;
background-image : url("pics/black_v.gif");
background-repeat: repeat-y;
z-index: 400;
margin: 0px;
padding: 0px;
}
.header_line_v_r {
position: absolute;
height: 100%;
width: 2px;
top : 0px;
right : 0px;
background-image : url("pics/black_v.gif");
background-repeat: repeat-y;
z-index: 400;
margin-top: 0px;
padding-top: 0px;
}
Le bloc en question qui ne se positionne pas est header_line_h_b
Savez vous comment harmoniser ceci svp ?
Merci d'avance
Kalber