images not displayed in iBooks and ADE
images display in Calibre and on the chrome browser.
only one repeated image works in ibooks and it has different CSS, so it must be something with the CSS.
ADE is a mess, most images don't display, but some are floating under the text.
div.fig {
margin: 0 0 1em 1em;
display: table;
float: right;
page-break-inside:avoid;
}
div.fig p {
display:table-caption;
caption-side:bottom;
text-align: center;
margin-top:2px;
font-size: 0.75em;
font-family:Verdana, sans-serif;
}
<div class="fig">
<img alt="photo" src="../Images/photo.jpeg" />
<p>caption</p>
</div>
thank you for your help!
|