-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloat.html
More file actions
96 lines (75 loc) · 2.59 KB
/
float.html
File metadata and controls
96 lines (75 loc) · 2.59 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Float</title>
<style>
img {
float: right;
}
div {
border: 3px solid #4CAF50;
padding: 5px;
}
.div1 {
background: red;
}
.div2 {
clear: left;
background: yellow;
}
.div3 {
background: green;
clear: left;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
.img1 {
float: right;
}
* {
box-sizing: border-box;
}
.box {
float: left;
width: 33.33%;
padding: 50px;
}
</style>
</head>
<body>
<h2>Float Right</h2>
<p><img src="the MOON.jpg" alt="The Moon"
style="width:170px; height: 170px; margin-left: 15px;">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum, nisi lorem egestas odio, vitae scelerisque enim ligula venenatis dolor. Maecenas nisl est, ultrices nec congue eget, auctor vitae massa. Fusce luctus vestibulum augue ut aliquet. Mauris ante ligula, facilisis sed ornare eu, lobortis in odio. Praesent convallis urna a lacus interdum ut hendrerit risus congue. Nunc sagittis dictum nisi, sed ullamcorper ipsum dignissim ac...
</p>
<br>
<hr>
<br>
<div class="div1">this should probably be red</div>
<div class="div2">this should probably be yellow</div>
<div class="div3">this should probably be green</div>
<br>
<hr>
<br>
<div class="clearfix"> <img class= "img1" src="the MOON.jpg" alt="The Moon"
style="width:170px; height: 170px; margin-left: 15px;"> this should have an image to the right</div>
<br>
<hr>
<br>
<div class="box" style="background-color:#bbb">
<p>this is some text in a box</p>
</div>
<div class="box" style="background-color:#ccc">
<p>text in a box</p>
</div>
<div class="box" style="background-color:#ddd">
<p>box tht has text in it</p>
</div>
</body>
</html>