-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestfloat.html
More file actions
53 lines (49 loc) · 1.57 KB
/
testfloat.html
File metadata and controls
53 lines (49 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<title>Test Float</title>
<style>
.header{
background-color: teal;
height: 150px;
}
.body{
background-color: red;
}
.left{
float: left;
width: 30%;
height: 500px;
background-color: cyan;
}
.right{
float:right;
width: 70%;
height: 500px;
background-color: magenta;
}
.footer{
clear: both;
background-color: teal;
}
</style>
</head>
<body>
<div>
<div class="header">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ut soluta natus voluptatum ducimus! Deleniti soluta, vero minima tenetur maxime, atque nesciunt fuga corrupti quo hic nemo molestias ipsum ullam aspernatur?
</div>
<div class="body">
<div class="left">
Left Portion
</div>
<div class="right">
Right Portion
</div>
</div>
<div class="footer">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Obcaecati, sequi? Nulla ex maiores sequi voluptas impedit? Ipsa molestias tempora obcaecati quidem at nulla enim suscipit sit, voluptates eligendi recusandae iusto.
</div>
</div>
</body>
</html>