Images split over two pages
I’m trying to edit an epub that displays many images split over 2 pages when I read it in iOS books or other reader (works fine on a kindle or kindle for iOS for example).
What should I do to avoid having an image split over 2 pages?
HTML/CSS that might be interesting below. This container 024 is one of many.
<div class="_idGenObjectLayout-1">
<div id="_idContainer024">
<img class="_idGenObjectAttribute-1" src="../Images/image00140.jpeg" alt=""/>
</div>
</div>
#_idContainer024 {
display:inline-block;
height:639px;
width:1200px;
}
img._idGenObjectAttribute-1 {
height:100.00%;
min-width:100%;
width:100.00%;
}
div._idGenObjectLayout-1 {
text-align:center;
}
|