Possible Duplicate:
Multiple background-images and a background-color
Can I have two background images and a background color?
Currently I just have this code to achieve the desired effect:
#myelement {
background: url("http://zbee.me/tz/bottom-right.png") no-repeat right bottom,
url("http://zbee.me/tz/top-left.png") no-repeat left top,
url("http://zbee.me/tz/bg.png");
}
But I want to use something like this:
#myelement {
background: url("http://zbee.me/tz/bottom-right.png") no-repeat right bottom,
url("http://zbee.me/tz/top-left.png") no-repeat left top;
background-color: #35434E;
}
Is it possible?