Is there a way to have a background image only display in specific elements?
For instance, if there are several divs within a main div that has a background image set, and all of them are contained within a body tag with its own background image. Is it possible to show the body background image (BodyBackground.jpg) instead of the div background image (DivBackground.jpg) in just one of the inner divs?
<body style="background-image:url('/Content/Images/BodyBackground.jpg'); background-repeat:repeat-y;">
<div style="background-image:url('/Content/Images/DivBackground.jpg')">
<div style="height:100px;width:200px"></div>
<div style="height:100px;width:200px"> SHOW BodyBackground.jpg IMAGE HERE </div>
<div style="height:100px;width:200px"></div>
</div>
</body>