multiple backgrounds on Css | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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 , __; __}

5th May 2021, 4:21 AM
Liliana Hernandez
Liliana Hernandez - avatar
3 Answers
+ 4
Answer.. (-_______-) took me 20 mins to find the second part .. Url , top right
5th May 2021, 4:27 AM
Liliana Hernandez
Liliana Hernandez - avatar
0
test { background-image: url (1.jpg) , url(2.jpg); background-repeat: no-repeat; background-position: left top , right top; }
5th Apr 2022, 10:02 AM
MIHINDOU Jeremy Pharmel
- 1
.test { background-image: url (1.jpg) , url(2.jpg); background-repeat: no-repeat; background-position: left top , right top; }
30th Sep 2021, 11:26 AM
Dilip Vishwakarma
Dilip Vishwakarma - avatar