Is it possible to use two images for a DIV background in CSS? I have one image that is just the background color and another that is a logo. Here's the code snippet I am currently using:
.header{
background-attachment: scroll;
background-clip: border-box;
background-color: transparent;
background-image: url("./img/logo.png");
background-origin: padding-box;
background-position: center;
background-repeat: no-repeat;
background-size: 400px 90px;
height: 90px;
width:100%
-webkit-border-radius:7px;
background: url(img/header_background.jpg) repeat-x;
}
The issue I'm facing is that the last image declared in the background is overwriting the previous one. Can someone please provide me with a solution?