1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| <!DOCTYPE html>
<html dir="ltr" lang="fr-FR">
<head>
<meta charset="UTF-8" />
<title>Header fixe et gentil</title>
<style type="text/css">
/* Page pleine */
html, body {
margin: 0; padding: 0;
height: 100%;
}
/* HEADER fixe */
header {
position: fixed;
width: 100%;
height: 3rem;
z-index: 99;
background: red;
}
/* Conteneur qui démarre juste après le HEADER */
.conteneur {
position: relative;
top: 3rem;
}
section {
margin-bottom: 10%;
background: gray;
}
</style>
</head>
<body>
<header>Dialogue<br />à deux.</header>
<div class="conteneur">
<section>Salut !</section>
<section>Yo ! Tranquille ?</section>
<section>Euh
Oui ! Et toi ?</section>
<section>Wesh morray !</section>
<section>Hein ?</section>
</div>
</body>
</html> |