I have a div that has an image as its background. But the image only covers up about 80% of the screen. I want to make the extra 20% of the screen to be black but its only coming up as white. How can I set the background images and the background color? This is my css,
#first_section_main{
top:77px;
min-width:1000px;
width:100%;
position:relative;
height:500px;
background-color:#3d3d3d;
background: url(../images/first_section_bg.jpg) no-repeat center center;
}
How can I make the background color #3d3d3d?