if i try to apply multiple background images, works great:
.selector{
background-image: url(image1.png), url(image2.pnng);
background-position: 0 -50px, 0 -100px;
}
the problem comes when i try
.selector{
background-color: blue, red;
background-position: 0 -50px, 0 -100px;
}
that simply won't apply any background color at all..
What am i missing here?