Answers for "div image and text vertical align"

1

vertical align image in div

<div class="frame">
  <img src="foo"/>
</div>

.frame {
    height: 160px; /* Can be anything */
    width: 160px; /* Can be anything */
    position: relative;
}
img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
Posted by: Guest on June-01-2021
0

Vertically align text next to an image?

<!-- moved "vertical-align:middle" style from span to img -->
<div>
  <img style="vertical-align:middle" src="https://via.placeholder.com/60x60">
  <span style="">Works.</span>
</div>
Posted by: Guest on October-17-2021

Code answers related to "div image and text vertical align"

Browse Popular Code Answers by Language