How can you use multiple images in the background?
What will be an ideal response?
CSS3 offers the capability of layering multiple images in the background of an element. This feature is supported by all modern browsers. The style rules for the background let you position and control the repeat properties for multiple images, with each value separated by commas. The first image on the following list is in the front or foreground, closest to the user, with successive values in order behind. This principle applies to all of the rule values. In other words, for the background-position property, the 100px 40px value affects the image closest to the user, which is balloon_art_trans.png.body {
background-image: url(balloon_art_trans.png),
url(clouds-and-sky.jpg);
background-repeat: no-repeat, no-repeat;
background-position: 100px 40px, top left;
}
You might also like to view...
Various techniques known as ____________ have been developed to locate a specific item in a larger collection of data, such as an array.
a. search engine schematics b. search algorithms c. database logic d. search protocols
Are the following two declarations the same
``` char city[8] = "Dallas"; char city[] = "Dallas"; ``` A. no B. yes
A class D fire extinguisher should be used in a chemical laboratory
Indicate whether the statement is true or false
The ________ File System is an Apple proprietary file system that supports larger files and uses Unicode
a. Mac OS Extended (HFS+) b. Hierarchical File System (HFS) c. Macintosh File System (MFS) d. None of the above