Assumed we have two images with different heights. Both images are aligned to the top via valign=t.
Minimum working example (MWE):
\documentclass{article}
\usepackage{subfig}
\usepackage[export]{adjustbox}
\begin{document}
\begin{figure}[h]
\centering
\subfloat[This is image A]{\includegraphics[width=0.45\textwidth, valign=t]{example-image-16x10}}\qquad
\subfloat[This is image B]{\includegraphics[width=0.45\textwidth, valign=t]{example-image-10x16}}\\
\caption{Caption for images A and B}
\end{figure}
\end{document}
Screenshot of the result:
Description of the issue:
Unfortunately the corresponding caption also moves up to the top with this command.
While both images should remain at the top, the left image caption should move down to the red dashed elevation line of the other caption for better appearance.
How to do so?




subcaptionpackage: https://tex.stackexchange.com/q/152818/134144 and thefloatrowpackage: https://tex.stackexchange.com/a/389970/134144 – leandriis Mar 02 '19 at 12:36