You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
692 B
38 lines
692 B
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>TD3 : Position</title>
|
|
<link rel="stylesheet" href="styles/style.css">
|
|
</head>
|
|
<body>
|
|
CECI EST LE BODY DE LA PAGE
|
|
<div id="main">
|
|
|
|
<div class="absolute1 border-blue">
|
|
JE SUIS UNE DIV ABSOLUTE
|
|
</div>
|
|
|
|
<div class="sticky border-blue">
|
|
JE SUIS UNE DIV STICKY
|
|
</div>
|
|
|
|
<div class="static border-red">
|
|
JE SUIS UNE DIV STATIC
|
|
</div>
|
|
|
|
<div class="relative border-green">
|
|
JE SUIS UNE DIV RELATIVE
|
|
|
|
<div class="fixed border-blue">
|
|
JE SUIS UNE DIV FIXED
|
|
</div>
|
|
</div>
|
|
|
|
<div class="absolute2 border-blue">
|
|
JE SUIS UNE DIV ABSOLUTE
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|