View Single Post
02-14-2006, 06:25 AM
#4
bcd is offline bcd
bcd's Avatar
Status: Junior Member
Join date: Oct 2005
Location: Cali
Expertise:
Software:
 
Posts: 96
iTrader: 0 / 0%
 

bcd is on a distinguished road

Send a message via AIM to bcd Send a message via MSN to bcd Send a message via Yahoo to bcd

  Old

As Joes said, you can't give one object two backgrounds. But there's a very easy workaround for this:

Code:
<html>
<head>
<style>
body { background: url(...) ...; }
#outer { background: url(...) ...; height: 100%; width: 100%; }
</style>
<body>
<div id="outer">

... [ content ] ...

</div>
</body>
</html>