Have your say in Community Polls: What was/is your greatest motivation to start your own business?

how to insert image inside a text box using html or css

how to insert image inside a text box using html or css

tarekanani
Shopify Partner
31 0 2

inserting image inside a text box  in the section of image with text 

 

with CSS or HTML any ideas ? 

 

Reply 1 (1)

ali768
Tourist
12 1 1

first your have to create a VS CODE file then place this code 

<div class="container">
  <img src="" alt="" style="width:100%;">
  <div class="text-block">
    <h4></h4>
    <p></p>
  </div>
</div>

after that create a css file in VS CODE and then place this code in css file 

.container {
  position: relative;
}

/* Bottom right text */
.text-block {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: black;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

don't forget to like 
and don't forget Mark as it solution

Malikhan