My CSS markup:
.rowbgi {
background-image:url('img/gradient.png');
background-color:#cccccc;
}
My HTML markup:
<div class="span4 rowbgi">
<img class="img-circle" data-src="holder.js/140x140">
<h2>Heading</h2>
<p>Stack Overflow</p>
<p><a class="btn" href="#">View details </a></p>
</div><!-- /.span4 -->
I am not able to see the background image, but the color is seen in the background. The image is available in the path.
Can somebody tell me some silly mistake I am doing?