-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtask4.html
More file actions
62 lines (58 loc) · 954 Bytes
/
Copy pathtask4.html
File metadata and controls
62 lines (58 loc) · 954 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Task4</title>
<style>
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.outer {
position:relative;
display:table;
width:100%;
height:100%;
border: solid black;
}
.inner {
margin:auto ;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
width:400px ;
height: 200px ;
background:#CCC ;
}
.circle-top {
width:50px;
height:50px;
background:#fc0;
border-bottom-right-radius: 50px;
}
.circle-bottom {
float:right;
margin-top:100px;
width:50px;
height:50px;
background:#fc0;
border-top-left-radius: 50px;
}
</style>
</head>
<body>
<div class = 'outer'>
<div class = 'inner'>
<div class="circle-top"></div>
<div class="circle-bottom"></div>
</div>
</div>
</body>
</html>