-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask4.html
More file actions
44 lines (39 loc) · 924 Bytes
/
Copy pathTask4.html
File metadata and controls
44 lines (39 loc) · 924 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
43
44
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>Task4</title>
<style type="text/css">
#rect {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-200px, -100px);
width: 400px;
height: 200px;
background-color: #ccc;
}
#circle1 {
background-color: #fc0;
width: 50px;
height: 50px;
border-bottom-right-radius: 50px;
}
#circle2 {
position: absolute;
bottom: 0;
right: 0;
background-color: #fc0;
width: 50px;
height: 50px;
border-top-left-radius: 50px;
}
</style>
</head>
<body>
<div id="rect">
<div id="circle1"></div>
<div id="circle2"></div>
</div>
</body>
</html>