-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.htm
More file actions
60 lines (54 loc) · 1.13 KB
/
test.htm
File metadata and controls
60 lines (54 loc) · 1.13 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
<!DOCTYPE HTML>
<html>
<head>
<style>
article {
width: 580px;
height: 580px;
padding: 10px;
background-color: gray;
}
section:before,
section:after {
content: "";
display: table;
}
section:after {
clear: both;
}
section {
*zoom: 1;
}
section {
width: 558px;
padding: 10px;
border: 1px solid black;
background-color: yellow;
}
.profile-pic-tiny {
width: 32px;
height: 32px;
float: left;
}
.comment-area {
margin-left: 10px;
width: 516px;
height: 200px;
background-color: white;
float: left;
}
</style>
</head>
<body>
<article>
<section>
<div class="profile-pic-tiny">
<img src="images/tiny-profile-pic.png">
</div>
<div class="comment-area">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</div>
</section>
</article>
</body>
</html>