Displaying two background images with different positioning:
html {
background: top left no-repeat url(http://wallpapers.pupazzo.org/animals/Peek-a-Boo_Red_Fox_Kit.jpg),
top right no-repeat url(http://www.dcwild.com/images/Fox-Kit-Riverfarm.jpg);
background-size: 50% 400px, 50% 400px;
}
The challenge arises when attempting to set the y position to 100%
, as it doesn't work as expected. The issue lies in how the 100% measurement is being derived from something other than the entire page. Is there a CSS approach that allows me to position both background images at 100%
?
You can view an example on this fiddle for clarification.
Your assistance is greatly appreciated!