-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfit.html
More file actions
42 lines (42 loc) · 922 Bytes
/
Copy pathfit.html
File metadata and controls
42 lines (42 loc) · 922 Bytes
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
<html>
<head>
<style type="text/css">
.rel {
position: relative;
width: 200px;
height: 200px;
background-color: dimgrey;
}
.abs {
position: absolute;
overflow: auto;
}
.top-right {
top: 10px;
right: 10px;
background-color: purple;
}
.bottom-right {
top: 10px;
bottom: 10px;
right: 10px;
background-color: purple;
}
.inner {
margin-left: 20%;
margin-right: 20%;
width: 80%;
height: 20px;
background-color: green;
}
</style>
</head>
<body>
<div class="rel">
<div class="abs bottom-right">
<div>最小化</div>
<div style="width:10px;">a</div>
</div>
</div>
</body>
</html>