What is the correct syntax when setting the background-image in CSS? In visual studio, there seems to be no problem in the background since it appears. But in the browser like IE or FF, the background does not appear. is there something i missed here?
syntax i am using is below (which i think is correct...)
#headerArea
{
height: 150px;
background-image: url('/images/bgimage.jpg');
}
the above is correct right?