Adding this Code to <figure> and <figcaption> CSS-Attributes helped me with the same problem. Also, it preserves the responsivenes of your images and captions.
figure { display: table; }
figcaption { display: table-caption; caption-side: bottom ; }
-
Adding
display: table;sets the stage. -
Adding
display: table-caption;alone placed the caption on top of
the image, Thecaption-sideproperty specifies the placement of
the table caption at thebottom,topis default.