Hello hello, je refais actuellement mon portfolio en ligne (http://www.caslantienne.fr) et je bute sur un comportement de Firefox que je trouve étrange.
J'ai déclaré un div d'id "header" et un autre d'id "baseline". Or un problème d'héritage fait que mon "baseline" prend la valeur de margin de mon "header".
Sur IE7 je n'ai pas ce comportement. Voilà ma source :
Quelqu'un a-t-il une idée ?
Merci !!!
J'ai déclaré un div d'id "header" et un autre d'id "baseline". Or un problème d'héritage fait que mon "baseline" prend la valeur de margin de mon "header".
Sur IE7 je n'ai pas ce comportement. Voilà ma source :
<style>
body {
font-family : helvetica;
font-size : 0.7em;
background : #FFFFFF;
margin : 0;
padding : 0;
}
a {
color : #FFFFFF;
}
#menu a:link {
text-decoration : none;
color : #FFFFFF;
}
#menu a:visited {
text-decoration : none;
color : #FFFFFF;
}
#menu a:focus {
text-decoration : none;
color : #FFFFFF;
}
#menu a:hover {
text-decoration : none;
color : #FFFFFF;
}
#menu a:active {
text-decoration : none;
color : #FFFFFF;
}
#conteneur {
margin : 0;
padding : 0;
height : 100%;
}
#header {
border-top : 5px solid #9add26;
background-image : url(img/fond_header.jpg);
height : 216px;
color : #ffffff;
padding : 0;
margin : 67px 0 0 0;
}
#baseline {
margin : 0;
padding : 0;
float : right;
border : 1px solid #000000;
color : #FFFFFF;
}
#caslantienne {
margin : 0;
padding : 0;
position : absolute;
background-image : url(img/caslantienne_header.jpg);
width : 311px;
height : 287px;
left : 75px;
top : 1px;
}
#menu {
margin : 0;
padding : 0;
background-image : url(img/ray.gif);
height : 30px;
}
.font_menu {
font: bold 1.4em arial;
color : #9add26;
letter-spacing : 1.7px;
padding : 6px 0 0 4px;
}
</style>
</head>
<body>
<div id="conteneur">
<div id="baseline">CSS & XHTML pour un webdesign standard</div>
<div id="header"></div>
<div id="menu">
<div class="font_menu">Des <a href="">formations</a> rigoureuses et une <a href="">expérience</a> solide m'ont permis de mener à bien les <a href="">projets</a> suivants...
</div>
</div>
<div id="caslantienne"></div>
</div>
</body>
</html>
Quelqu'un a-t-il une idée ?
Merci !!!