hi, I have trouble with the alignment of my image captions. I try to center align at bottom of image, but they are all left aligned and also over two lines:
Figure:
1
I use the same approach for my table captions, but they work as intended.
My CSS:
By removing the display property the caption is thrown at the bottom right of the image with the figure number at the next line (left side).
All hints appreciated...
Figure:
1
I use the same approach for my table captions, but they work as intended.
My CSS:
img:after {
content: "Figure: " counter(figure_counter);
counter-increment: figure_counter;
display: table-caption;
caption-side: bottom;
font-style: italic;
text-align: center;
}
By removing the display property the caption is thrown at the bottom right of the image with the figure number at the next line (left side).
All hints appreciated...