it’s possible this also affects iBooks for iOS, but it’s impossible to test without an inspector.
If you add an <img> into a chapter without it being wrapped in a <figure> (or div?) iBooks for Mavericks will wrap it in a <div>, move your CSS applied to the img to that div and add a host of inline styles to your img
the solution is to wrap it in a div in your xhtml. this will give you more control over its styling and avoid messy inline styling:
it’s possible this also affects iBooks for iOS, but it’s impossible to test without an inspector.
If you add an
<img>
into a chapter without it being wrapped in a<figure>
(or div?) iBooks for Mavericks will wrap it in a<div>
, move your CSS applied to theimg
to thatdiv
and add a host of inline styles to yourimg
the solution is to wrap it in a div in your xhtml. this will give you more control over its styling and avoid messy inline styling: