-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path07_float.html
More file actions
33 lines (31 loc) · 837 Bytes
/
07_float.html
File metadata and controls
33 lines (31 loc) · 837 Bytes
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>float</title>
<link rel="stylesheet" href="css/07_float.css">
</head>
<body>
<div>
<P> test de balise block contenant une <span>
balise inline
</span>
</P>
<hr>
<!--div.photo{$}*4 -->
<div class="photo">1</div>
<div class="photo">2</div>
<div class="photo">3</div>
<div class="photo">4</div>
<!--pour annuler l'effet flottant (float) on utilise par convention la classe CLEAR-->
<div class="clear"></div>
<!--div.photo{$@5}*4 -->
<div class="photo">5</div>
<div class="photo">6</div>
<div class="photo">7</div>
<div class="photo">8</div>
</div>
</body>
</html>