How to add two different background images on the body

Guys, how do I add these two SVGs so that the first is at the top of the document and the second is at the end? I painted them red just for you to see. Repo: https://github.com/sircarloschaves/social-proof-section Live page: https://sircarloschaves.github.io/social-proof-section/
GitHub
GitHub - sircarloschaves/social-proof-section
Contribute to sircarloschaves/social-proof-section development by creating an account on GitHub.
No description
3 Replies
ἔρως
ἔρως7mo ago
you can either use a ::before and ::after, or just set multiple background images to the <body>, each with a different position
Mannix
Mannix7mo ago
body{
background-image: url(pic.1),url(pic.2);
background-repeat: no-repeat;
background-position: top left, bottom right;
}
body{
background-image: url(pic.1),url(pic.2);
background-repeat: no-repeat;
background-position: top left, bottom right;
}
Chaves
Chaves7mo ago
Ok, I'll try