Answers for "put text right of image html"

0

html image with its text below

<figure>
  <img src="img.jpg" alt="my img"/>
  <figcaption> Your text </figcaption>
</figure>
Posted by: Guest on November-15-2020
0

how to align image with text in html

<div class="box">
    <img src="https://via.placeholder.com/60x60">
    <span style="">Works.</span>
</div>

.box {
   display: flex;
   align-items:center;
}
Posted by: Guest on November-08-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language