I'm trying to do a website with HTML/PHP Language but when i do my div option in the css sheet, nothing appear on my screen except my body.
Here's my Body structure:
<div id="page">
<div id="header">
</div>
<div id="contenu">
<h1>TEST</h1>
</div>
<div id="footer">
</div>
</div>
css part:
#header{
width: 100%;
height: 15%;
position: absolute;
top: 75%;
left: 0%;
background-color: #blue;
}
#footer{
width: 100%;
height: 5%;
position: absolute;
top: 50%;
left: 0%;
background-color: #red;
}
Thanks, i'm ok now
Here's my Body structure:
<div id="page">
<div id="header">
</div>
<div id="contenu">
<h1>TEST</h1>
</div>
<div id="footer">
</div>
</div>
css part:
#header{
width: 100%;
height: 15%;
position: absolute;
top: 75%;
left: 0%;
background-color: #blue;
}
#footer{
width: 100%;
height: 5%;
position: absolute;
top: 50%;
left: 0%;
background-color: #red;
}
Thanks, i'm ok now