Answers for "position text above image html"

3

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 make text center above image html

#container {
  text-align: center;
}

.text {
  display: inline-block;
  margin: 0 20px 0 20px;
}

.img {
  margin: 0 20px 0 20px;
  width: 50px;
  height: 50px;
}
Posted by: Guest on August-22-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language