Skip to content Skip to sidebar Skip to footer

Inline Css Background:url() Not Working In Jinja2 Template

I'm having problem making the Bootstrap Carousel responsive and scaling height and width of dynamic images. One work around I found was to use: background: url(path_to_image.jpg) n

Solution 1:

Try this:

<img src="background-image: url({% static 'img/works2_big.jpg' %})" class="center-block">

Post a Comment for "Inline Css Background:url() Not Working In Jinja2 Template"