forked from dirkmu404/baudu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask4
44 lines (44 loc) · 954 Bytes
/
task4
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="en">
<head>
<meta charset="utf-8">
<title>task4</title>
<style type="text/css">
body,div{
margin: 0px;
padding: 0px;
}
.center{
width: 400px;
height: 200px;
background: #CCC;
position: absolute;
top:50%;
left:50%;
margin-top: -100px;
margin-left: -200px;
}
.left{
width: 50px;
height: 50px;;
border-bottom-right-radius: 50px;
background: #fc0;
}
.right{
width: 50px;
height: 50px;
border-top-left-radius: 50px;
background: #fc0;
position: absolute;
bottom: 0px;
right: 0px;
}
</style>
</head>
<body>
<div class="center">
<div class="left"></div>
<div class="right"></div>
</div>
</body>
</html>