I know how to specify multiple background images using CSS3 and modify how they are displayed using different options.
Currently I have a <div>
, which needs to have a different color for about 30% of the width on the left side:
div#content {
background: url("./gray.png") repeat-y, white;
background-size: 30%;
}
Instead of loading the image which is totally gray, how can I do this specifying the color, and without additional <div>
s?