-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask4.html
More file actions
51 lines (47 loc) · 722 Bytes
/
task4.html
File metadata and controls
51 lines (47 loc) · 722 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
45
46
47
48
49
50
51
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<title>task4</title>
</head>
<style>
body{
margin:0;
padding: 0;
position: relative;
}
.grey{
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -100px;
width:400px;
height:200px;
background-color: #ccc;
overflow: hidden;
}
.circle1,.circle2{
background-color: #fc0;
width: 100px;
height: 100px;
border-radius: 100%;
}
.circle1{
position:absolute;
left: -50px;
top:-50px;
}
.circle2{
position:absolute;
right: -50px;
bottom:-50px;
}
</style>
<body>
<div class="grey">
<div class="circle1"></div>
<div class="circle2"></div>
</div>
</body>
</html>