-
Notifications
You must be signed in to change notification settings - Fork 0
/
task4.html
51 lines (44 loc) · 935 Bytes
/
task4.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#box{
width:400px;
height: 200px;
border:1px solid pink;
background: #eee;
top:50%;
left:50%;
position:absolute;
margin-top:-100px;
margin-left:-200px;
}
#s1{
margin-top:0;
margin-left:0;
border-radius: 0 100px 0 0;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
#s2{
margin-top:-100px;
margin-left:300px;
border-radius: 0 0 0 100px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
</style>
</head>
<body>
<div id="box">
<div id="s1"></div>
<div id="s2"></div>
</div>
</body>
</html>