This topic was
originally posted by whbenson in the Apple Devices forum, but I thought it might be a better fit here. I also wrote a short
blog post about this issue.
In iBooks, you are supposed to be able to double-tap on an image in order to zoom in on it. This works for images that are simply embedded.
If you want to set images to float left or right so that text wraps around them, and
at the same time control the size of the image, this is possible by wrapping the image in a div and controlling the properties of the div:
Code:
<div style="float: left; width: 42%">
<img style="width: 100%" src="image.png" />
</div>
But if you do this, you can't zoom in on the image any more. Instead, double-clicking on an image simply selects a short chunk of nearby text.
Any ideas on how to get around this problem?