- 1
multiple backgrounds on Css
Fill in the blanks to add two background images to the element, with the first positioned at the top left corner, and the other at the top right corner. .test { background-image: __(1.jpg) __l(2.jpg);__ background-repeat: no-repeat; background-position: left , __; __}
3 Respostas
+ 4
Answer.. (-_______-) took me 20 mins to find the second part ..
Url
,
top
right
0
test {
background-image:
url
(1.jpg)
,
url(2.jpg);
background-repeat: no-repeat;
background-position: left
top
,
right
top;
}
- 1
.test {
background-image:
url
(1.jpg)
,
url(2.jpg);
background-repeat: no-repeat;
background-position: left
top
,
right
top;
}