We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb107e commit ac2fec8Copy full SHA for ac2fec8
styles.css
@@ -1,18 +1,26 @@
1
-/* Background Images*/
+/* background-repeat */
2
3
div {
4
height: 300px;
5
color: white;
6
+ /* border: 2px solid red; */
7
}
8
9
.big-img {
10
background: url("./big.jpeg");
11
+ background-repeat: no-repeat;
12
13
14
.small-img {
15
background: url("./small.jpeg");
16
+ background-repeat: repeat-x;
17
+ background-repeat: repeat-y;
18
+ background-repeat: space;
19
+ background-repeat: round;
20
21
22
23
.folder-img {
24
background: url("./images/folder-img.jpeg");
25
26
0 commit comments