I am facing a layout issue with 2 images that are placed side by side within their tag. The sizes of the images are different, but they are both anchored at the top of their parent element.
<span style="position: relative; left: 0; top: 0; vertical-align:top"><img src="/assets/images/xxxxx.png" class="xxxxx" alt="XXXXX" height="30px" width="auto"/></span>
<span style="position: relative; left: 0; top: 0;"><img src="/assets/images/xx.png" class="xx" alt="xx" height="45px" width="auto"/></span>
Currently, the smaller image is aligned at the top with the larger image. I would like to align the second smaller image at the bottom so that it appears at the same level as the bigger image.
https://i.stack.imgur.com/ELEHz.png
One thing I forgot to mention is that both images are enclosed in an additional tag from the AngularJS "ngx-admin" template. Could this be causing the alignment issue?