-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS-float-V2-contained.html
43 lines (41 loc) · 1009 Bytes
/
CSS-float-V2-contained.html
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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Float V2</title>
<link rel="stylesheet" href="css-float-V2.css">
</head>
<body>
<h2>Layout with Cleared Floats </h2>
<header>
<code><header></code>
</header>
<section>
<code><Section> <br> Float:Left </code>
</section>
<aside>
<code><Aside><br> Float:Right</code>
</aside>
<footer>
<code><Footer><br> Clear:Both</code>
</footer>
<br>
<h2>Layout with Contained Floats </h2> <!--Also known as "clearfix"-->
<header>
<code><header></code>
</header>
<div class="group">
<code class="default"><Section=Group></code>
<section>
<code><Section> <br> Float:Left </code>
</section>
<aside>
<code><Aside><br> Float:Right</code>
</aside>
</div>
<footer>
<code><Footer><br> Clear:Both</code>
</footer>
</body>
</html>