-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.html
37 lines (35 loc) · 805 Bytes
/
image.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
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>this is about image</title>
<style>
* {
box-sizing: border-box;
}
div.img-container {
float:left;
padding: 10px;
width:33.33%;
}
clearfix::after{
content: "";
clear: both;
display:table;
}
</style>
</head>
<body>
<div class = "clearfix">
<div class = "img-container">
<img src = "20.jpg" alt = "alternative" style = "width:100%">
</div>
<div class = "img-container">
<img src = "20.jpg" alt = "alternative" style = "width:100%">
</div>
<div class = "img-container">
<img src = "20.jpg" alt = "alternative" style = "width:100%">
</div>
</div>
</body>
</html>