I'm trying this code on IE6.
My LH CSS nor my H1+H2 doesn't work.
I have searched but they seem to be well written.
What do you thing about it ?
Thanks.
HTML
=====
<html>
<head>
<title>Test</title>
<link href="test.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="enTete">Mon Site Web</div>
<div id="menuGauche">
<div id="menu">
<ul>
<lh>Espace principal
<li> Item 1 vachement long super long
<li> Item 2
<li> Item 3
</ul>
</div>
</div>
<div id="contenu">
<h1>Votre espace Abonné</h1>
<h2>Consultation de vos messages</h2>
</div>
<div id="piedPage">Contactez-nous</div>
</body>
</html>
CSS
====
#enTete {
border: 1px solid #6699FF;
height: 110px;
padding: 20px;
left: 0px;
top: 0px;
background-color: #99CCFF;
}
#piedPage {
background-color: #99CCFF;
position: absolute;
height: 50px;
left: 0px;
bottom: 0px;
text-align: center;
vertical-align: middle;
padding-top: 10px;
width: 100%;
}
#menuGauche {
width: 150px;
position: absolute;
left: 0px;
top: 130px;
background-color: #EBEBEB;
border: 1px solid #999999;
padding: 0px;
}
#menu {
background-color: #FFFFFF;
padding-bottom: 5px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
}
ul {
margin-left: 25px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
lh {
font-weight: bold;
font-size: 18px;
color: #ffffff;
background-color: #FFFF33;
padding: 3px;
border: 2px dotted #00CCCC;
}
li {
font-size: 12px;
color: #006699;
list-style-position: outside;
list-style-type: square;
}
#contenu h1 {
font-size: 32px;
color: #663333;
font-weight: bolder;
text-transform: uppercase;
border-bottom-width: 3px;
border-bottom-style: solid;
border-bottom-color: #663333;
white-space: nowrap;
width: 1px;
}
#contenu h1 + h2 {
font-size: 28px;
color: #996600;
font-weight: bold;
text-indent: 25pt;
margin-top: -10px;
}
#contenu {
position: absolute;
left: 180px;
top: 130px;
}
* {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
body {
background-color:#FFFFFF;
}
html {
margin: 0px;
}