I have a dilemma with my image tag:
<img src="/images/blah.gif" alt="blah" />
Is there a way to make this work using only CSS? I attempted the following, but unfortunately, the image is not showing up. What could be the issue?
.blah
{
background-image: url('/images/blah.gif') center center no-repeat #fff;
}
Any insights on what might be wrong here?