Background images / textures are being used and implemented in many ways, often adding the nicest of finishing touches to a website. It is now in CSS3 we can apply background image dimensions as well as use multiple background images.
The CSS3 background-size is written background-size: Apx Bpx;
- Apx = x-axis (width)
- Bpx = y-axis (height)
An example for those on alternative browsers, not seeing the background-image effect..
Applying multiple background images in CSS3 is quite easy, using a comma with the standard background property.
E.g. background: url(image_1.jpg) top right no-repeat, url(image_2.jpg) bottom right no-repeat;
An example for those on alternative browsers, not seeing the background-image effect..