Answers for "How to write something inside image"

CSS
0

How to write something inside image

//HTML code
<div class="relative">
      <img src="" width="100%"/>                                                            
      <span class="caption">some thing</span>
</div>

//CSS code
.relative {
    position: relative;
}
.relative .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    left: 0;
    background: rgba(0,0,0,0.7);
}
Posted by: Guest on March-24-2022

Code answers related to "How to write something inside image"

Browse Popular Code Answers by Language