Kevin,

on Monday, January 30, 2006 at 16:22 Kevin Newsum wrote:

> Ok, silly question here perhaps, but considerable poking around hasn't
> uncovered an answer to date.  I have a single background color and two
> distinct background elements that I would like to position absolutely, one
> upper right corner no repeat and the other lower left corner no repeat.

I guess you need something like that:

<div id="backg1">
  <div id="backg2">
    content goes here...
  </div>
</div>

#backg1 {
   background: red url(/img/background1.png) no-repeat top right;
}
#backg2 {
   background: transparent url(/img/background2.png) no-repeat bottom left;
}

regards

  Martin

 



______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to