-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPart3.css
More file actions
36 lines (33 loc) · 765 Bytes
/
Part3.css
File metadata and controls
36 lines (33 loc) · 765 Bytes
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
div{
height: 200px;
width: 500px;
background-color:pink ;
/** border-width: 5px;
border-style: solid;
border-color: black;**/
border: 5px solid black;
/** border-left-color: blue;
border-left-style: dashed;
border-top: 5px dashed red;
border-radius: 10px;**/
border-top-right-radius: 10px;
padding-top: 20px;
margin-bottom: 25px;
margin-left: 20px;
}
h1{
/** border-width: 2px;
border-style: dashed;
border-color: green;**/
border: 2px dashed green;
/** border-radius: 6%;**/
}
button{
border: 2px solid black;
border-radius:10px ;
/** padding-left: 25px;
padding-right: 25px;**/
padding:25px;
/** padding: 10px 20px 30px 40px;**/
background-color: yellow;
}