-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdisp.css
More file actions
43 lines (41 loc) · 1.05 KB
/
disp.css
File metadata and controls
43 lines (41 loc) · 1.05 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
* {
margin: 0;
padding: 0;
}
body {
background-color: rgba(0, 255, 38, 0.178);
}
.div1 {
background-color: blue;
width: 250px;
height: 200px;
margin: 10px;
display: inline-block;
border-width: 3px;
border-style: solid none solid none;
border-color: black;
text-align: center;
background-image: url(./assets/High_resolution_wallpaper_background_ID_77701652693.jpg);
background-repeat: no-repeat;
background-size: contain;
font-size: 25px;
text-decoration: red wavy underline;
text-transform:capitalize;
}
.div2 {
display: inline-block;
background-color: rgb(0, 255, 38);
width: 250px;
height: 200px;
margin: 10px;
border-width: 3px;
border-style: solid none solid none;
border-color: black;
text-align: center;
background-image: url(./assets/High_resolution_wallpaper_background_ID_77701652693.jpg);
background-repeat: no-repeat;
background-size: contain;
font-size: 25px;
text-decoration: red wavy underline;
text-transform:capitalize;
}