-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_04.css
More file actions
53 lines (53 loc) · 1.01 KB
/
Copy pathstyle_04.css
File metadata and controls
53 lines (53 loc) · 1.01 KB
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
div{
border: 10px solid orange;
background-color: dodgerblue;
width: 200px;
height: 200px;
float: left;
margin: 10px;
text-align: center;
color: white;
font-size: 20px;
padding: 72.5px;
box-sizing: border-box;
}
.box1{
border-radius: 15px;
box-shadow: 10px 15px 0 gray, 20px 25px 0 rgba(128, 128, 128, 0.63);
font-size: 40px;
font-weight: bold;
text-shadow: 0 0 5px black;
}
.box2{
border-radius: 30px;
box-shadow: 0 0 20px gray;
}
.box3{
border-radius: 50%;
/* 원은 50%나 100%로 작성한다. */
box-shadow: inset 0 0 100px black;
border: none;
}
.box4{
border-radius: 50px 0px;
box-shadow: inset 5px 3px 10px blue;
}
.box5{
border-radius: 100% 0px 0px 0px;
box-shadow: inset 0 0 100px black;
}
.box6{
border-radius: 50% 50% 50% 0px;
}
.box7{
border-radius: 100% 0px;
}
.box8{
border-radius: 50% 50% 0px 0px;
}
.box9{
width: 400px;
height:100px;
padding: 25px;
border-radius: 100px 100px 100px 100px;
}