Quote:
Originally Posted by Wlan
RbnJrg,
Its also a good technique, I use like this on one of my websites.
*{margin:0;padding:0;}
html{height:100%;background:url(cover.jpg) no-repeat center center fixed;background-size:contain;}
body{height:100%;}
|
In a website, those css properties work fine. But ebooks (and mainly ereaders) don't support quite well some of them. In this case, we can have issues with:
Code:
html, body {
height: 100%;
}
I tell you I use those properties without troubles when I'm building an ebook for modern Kindle devices (those ones what support the .kf8 format) but some ereaders (Sony for example) that are based on a not very modern version of RMSDK, have troubles to handle especially "html {height: 100%;}".
But I think your code would work fine
without "html, body {height: 100%;}". With those properties, under ADE , the cover won't reflow. Do the try
Regards
Rubén