I am attempting to apply multiple CSS backgrounds and I encountered an issue in Chrome where it is flagging this style as having an invalid property value.
In the developer tools, there is a yellow exclamation mark icon and a strike-through on this particular style:
Below is the code for the style:
.illyBody{
background:transparent url(night_body.png) bottom left repeat-x, #27235b url(night_stars.png) 16px left repeat-x !important;
background:transparent url(night_body.svg) bottom left repeat-x, rgb(39, 35, 91) url(night_stars.svg) 16px left repeat-x !important;
}
Can you identify what is causing this to be invalid?