Answers for "bootstrap4 background image"

CSS
0

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>
Posted by: Guest on February-05-2021
0

bootstrap create full screen background image

.wrapper{background: url('/assets/64531/green_suburb.jpg') no-repeat   center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}
Posted by: Guest on May-04-2020
0

row background image bootstrap 5

<!-- Background image -->
<div class="bg-image"
style="background-image: url('https://mdbcdn.b-cdn.net/img/Photos/Others/images/76.jpg');
      height: 100vh">
</div>
<!-- Background image -->
Posted by: Guest on August-04-2021

Browse Popular Code Answers by Language