Bootstrap Responsive Background Image Code Example
Example 1: add background image in bootstrap 5
<div class="has-bg-img bg-purple bg-blend-screen"> <h4>Background blend mode: Multiply</h4> <img class="bg-img" src="..."> </div>
Example 2: Scaling Images and Videos css
.container { width: 50%; height: 200px; overflow: hidden; } .container img { max-width: 100%; height: auto; display: block; }
Comments
Post a Comment