I want to use the bootstrap half-slider carousel and I am using codeigniter. In it, it used <div>
with background-image
instead of <img>
, like this
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide One');"></div>
In my view used it like this:
<div class="fill" style="background-image:url('../assets/images/image1.jpg')"></div>
However, it doesn't show the image.
Your help will be much appreciated.