Epubs: keeping images and captions together
To keep images and captions together I have tried enclosing both in a div tag with a class keeptogether and stating in the stylesheet:
div.keeptogether {
display:inline-block;
}
This seems to work. The only problem is that the image and caption are always left-aligned, event when I put text-align: center;
Does anyone know a way to make the images centred while using: display:inline-block; ..?
|