-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rounded corners.txt
51 lines (40 loc) · 1.06 KB
/
Rounded corners.txt
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
<!DOCTYPE html>
<html>
<head>
<h1 style="color:red;">The border-radius Property</h1>
<body style="background-color:powderblue;">
</head>
<body>
<p>Rounded corners for an element with a specified background color:</p>
<p id="rcorners1">Rounded corners!</p>
<p>Rounded corners for an element with a border:</p>
<p id="rcorners2">Rounded corners!</p>
<p>Rounded corners for an element with a background image:</p>
<p id="rcorners3">Rounded corners!</p>
</body>
</html>
/* CSS styles */
#rcorners1 {
border-radius: 25px;
background: #73AD21;
padding: 20px;
width: 200px;
height: 150px;
}
#rcorners2 {
border-radius: 25px;
border: 2px solid #73AD21;
padding: 20px;
width: 200px;
height: 150px;
}
#rcorners3 {
border-radius: 25px;
background: url("https://tinyurl.com/reh3r7d5");
/* "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRVdp81KK5Z0jav12sxXx0pz3l6vkX5z7lDBg&usqp=CAU"*/
background-position: left top;
background-repeat: repeat;
padding: 20px;
width: 200px;
height: 150px;
}