-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex04-16.html
33 lines (31 loc) · 983 Bytes
/
ex04-16.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>다양한 모서리 테두리</title>
<style>
p {
background :#90D000;
width: 300px;
padding : 20px;
}
#round1 {border-radius : 50px;}
#round2 {border-radius : 0px 20px 40px 60px;}
#round3 {border-radius : 0px 20px 40px;}
#round4 {border-radius : 0px 20px;}
#round5 {border-radius : 50px;
border-style:dotted;}
</style>
</head>
<body>
<h3>둥근 모서리 테두리</h3>
<hr>
<p id="round1">반지름 50픽섹의 둥근 모서리</p>
<p id="round2">반지름 0,20,40,60 둥근 모서리</p>
<p id="round3">반지름 0,20,40,20 둥근 모서리</p>
<p id="round4">반지름 0,20,0,20 둥근 모서리</p>
<p id="round5">반지름 50의 둥근 점선 모서리</p>
</body>
</html>