/ Published in: CSS
Multiple background images can be a useful feature if you want to put some pictures in a background in different positions. Separate it using a comma with the standard background property.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#multiple-images { background: url(image_1.png) top left no-repeat, url(image_2.png) bottom left no-repeat, url(image_3.png) bottom right no-repeat; }