-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemo4.html
More file actions
67 lines (65 loc) · 1.34 KB
/
Copy pathDemo4.html
File metadata and controls
67 lines (65 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css">
#div_tong{
width: 100%;
height: 2000px;
background:pink ;
}
#div_tren{
width: 100%;
height: 20%;
background: red;
}
#div_duoi{
width: 100%;
height: 80%;
background: white;
}
#div_tren > .trai{
width: 50%;
height: 100%;
background: yellow;
float: left;
}
#div_tren > .phai{
width: 50%;
height: 100%;
background: black;
float: left;
}
#div_tren > .phai > .tren {
width: 100%;
height: 50%;
background: purple;
text-align: right;
}
</style>
</head>
<body>
<div id="div_tong">
<div id="div_tren">
<div class="trai">
<img src="https://static.wikia.nocookie.net/naruto/images/d/d8/Kakashi2.png/revision/latest?cb=20210723122843&path-prefix=vi" style="height: 100%;" width="100%">
</div>
<div class="phai">
<div class="tren">
<form>
<select>
<option>Hội đam mê xe độ</option>
</select>
<button>Gâu gâu</button>
</form>
</div>
</div>
</div>
<div id="div_duoi" style="position: fixed; bottom: 0; left: 0; ">
Xin chào tất cả mọi người
</div>
</div>
</body>
</html>