Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 06-04-2025, 07:03 PM   #61
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,855
Karma: 8821117
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by DNSB View Post
The !important tag allows you to override other settings even if they have higher specificity. OTOH, only use !important when it is absolutely needed since overuse can make debugging a PITA. At one time, I was editing a stylesheet where virtually every line ended in !important; and it made figuring out what was going on no fun. I finally ended up removing the !importants and then adding 1 set back which kept a button from changing background colour.
Very right! In the case mentioned above I employed the !important tag, it was only for the following properties (because PocketBook has issues to handle them):

Code:
-webkit-column-break-inside: avoid !important; 
break-inside: avoid !important; 
page-break-inside: avoid !important;
Your answer make me see that my answer was ambiguous; I didn't employ the !important tag in all the properties.
RbnJrg is offline   Reply With Quote
Old 06-05-2025, 04:34 AM   #62
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,173
Karma: 148951761
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by RbnJrg View Post
Very right! In the case mentioned above I employed the !important tag, it was only for the following properties (because PocketBook has issues to handle them):

Code:
-webkit-column-break-inside: avoid !important; 
break-inside: avoid !important; 
page-break-inside: avoid !important;
Your answer make me see that my answer was ambiguous; I didn't employ the !important tag in all the properties.
If it doesn't fiit on the page, it's either going to drop to the next page or it's going to flow off of the page, This is why most page breaks are useless.
JSWolf is offline   Reply With Quote
Old 06-05-2025, 06:55 AM   #63
Slevin#7
Connoisseur
Slevin#7 began at the beginning.
 
Posts: 73
Karma: 10
Join Date: May 2025
Device: iPad
Quote:
Originally Posted by RbnJrg View Post
Code:
-webkit-column-break-inside: avoid !important; 
break-inside: avoid !important; 
page-break-inside: avoid !important;
Also, can you tell me, why you use
Code:
-webkit-column-break-inside
instead of
Code:
-webkit-page-break-inside
which would more likely match the intention of the other properties?
Slevin#7 is offline   Reply With Quote
Old 06-05-2025, 07:40 AM   #64
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,855
Karma: 8821117
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by Slevin#7 View Post
Also, can you tell me, why you use
Code:
-webkit-column-break-inside
instead of
Code:
-webkit-page-break-inside
which would more likely match the intention of the other properties?
First at all, because "-webkit-page-break-inside" doesn't exist and second, because ereaders based on Readium/Webkit to display the epub as unique pages, split (internally) in columns the full xhtml file that is showing.
RbnJrg is offline   Reply With Quote
Old 06-05-2025, 07:47 AM   #65
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,855
Karma: 8821117
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by JSWolf View Post
If it doesn't fiit on the page, it's either going to drop to the next page or it's going to flow off of the page, This is why most page breaks are useless.
The images fit on the page but in some ereaders (for example Foliate for linux) without "-webkit-column-break-inside: avoid" images can be showed half in page and half in the following one, they are not forced to float vertically. All this on epub3 of course.
RbnJrg is offline   Reply With Quote
Old 06-05-2025, 01:15 PM   #66
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,173
Karma: 148951761
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by RbnJrg View Post
The images fit on the page but in some ereaders (for example Foliate for linux) without "-webkit-column-break-inside: avoid" images can be showed half in page and half in the following one, they are not forced to float vertically. All this on epub3 of course.
I've never heard of any program that splits an image. If the image is too larger for the page, it can get moved to the next page or you won't see some of the image as it's off the page for the bit that don't fit.
JSWolf is offline   Reply With Quote
Old 06-05-2025, 03:21 PM   #67
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,855
Karma: 8821117
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by JSWolf View Post
I've never heard of any program that splits an image. If the image is too larger for the page, it can get moved to the next page or you won't see some of the image as it's off the page for the bit that don't fit.
No, the image is not too larger for the page, is a half page image. But Foliate (a Linux program), when I use the code to force the image float vertically (so the fragmentation is avoided), it displays the image in the place where it was situated (that is, the image doesn't float) and many time the picture is showed half in page (at the bottom) and half in the next one (at top). For that reason I employ "-webkit-column-break: avoid !important".

EDIT: Here you have the issue with Foliate (in this case with a full page image) and the right way to be displayed with Readium:

a) The issue with Foliate:

Click image for larger version

Name:	One1.jpg
Views:	61
Size:	72.2 KB
ID:	216014 Click image for larger version

Name:	One2.jpg
Views:	58
Size:	55.4 KB
ID:	216015

b) Perfectly showed with Readium:

Click image for larger version

Name:	One full0.jpg
Views:	58
Size:	86.5 KB
ID:	216016 Click image for larger version

Name:	One full1.jpg
Views:	61
Size:	50.6 KB
ID:	216017 Click image for larger version

Name:	One full2.jpg
Views:	59
Size:	79.6 KB
ID:	216018

In both cases the fragmentation is avoided (no blank space) but in Foliate the image was splitted.


However I was able to fix that also in Foliate:

Click image for larger version

Name:	One3.jpg
Views:	60
Size:	78.7 KB
ID:	216023 Click image for larger version

Name:	One4.jpg
Views:	59
Size:	55.0 KB
ID:	216024 Click image for larger version

Name:	One5.jpg
Views:	59
Size:	76.7 KB
ID:	216025

Last edited by RbnJrg; 06-05-2025 at 04:07 PM.
RbnJrg is offline   Reply With Quote
Old 06-08-2025, 05:35 AM   #68
Quoth
Still reading
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 14,509
Karma: 108666825
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper
Quote:
Originally Posted by RbnJrg View Post
The images fit on the page but
Really? How do you know what size the screen is, or does the image always scale?
Quoth is offline   Reply With Quote
Old 06-08-2025, 11:40 AM   #69
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,855
Karma: 8821117
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by Quoth View Post
Really? How do you know what size the screen is, or does the image always scale?
Because I use a svg wrapper inside a div with a height of 99vh So, no matter how big is the picture, the wrapper makes its magic and the image always will fit inside the space asigned. I've done a lot of work (and testing) on ​​this point, and I can assure you that using an SVG wrapper makes the problems go away. But I don't always set the container div to 99vh in height; depending on the image (mainly half-page images), I set it to 50vh (or 60vh) in height. The thing even works in landscape mode; watch the following examples (with full and half page images):

https://www.mobileread.com/forums/sh...6&postcount=16

https://www.mobileread.com/forums/sh...0&postcount=17

Of course, all of this is done under epub3 together with appropriate code to avoid fragmentation.

Last edited by RbnJrg; 06-08-2025 at 11:43 AM.
RbnJrg is offline   Reply With Quote
Old Yesterday, 07:09 AM   #70
bmilan
Junior Member
bmilan began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Sep 2025
Device: none
Hello! I've been lurking a lot here for a while now and decided it's time to ask for advice.
In the company I work at I sometimes prepare e-books for clients. I don't have much experience so I've always been doing epubs as simple as can be. But I always struggle with images.
Now I'm working on a book (ePub3) with lots of images with captions. Images are both vertical and horizontal, all of them have captions, both short and long. I included them in <figure> tags following guidlines found on this forum and while horizontal images display more or less properly, vertical ones just don't work. So I think I'll attempt RbnJrg's method with svg wrapper. I have three questions though:
1. Is there any chance this will work on Kindle after converting to mobi with kindle previewer? The client wants to get both ePub and mobi formats.
2. Is there a proper, working way to include alternative text for image in svg wrapper? The client wants e-book to be accessible.
3. Can I leave horizontal images in <figure> tags and put only problematic vertical ones in svg? Or should I do everything one way?
Any help would be greatly appeciated!
bmilan is offline   Reply With Quote
Old Yesterday, 09:22 AM   #71
Quoth
Still reading
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 14,509
Karma: 108666825
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper
For reflowable ebooks
Mobi is basically dead. You can only really know what Amazon is doing by uploading the epub and publishing, then buying it on 2 kinds of Kindle and an app. If all are on same account it's one purchase. The default is KFX with the more similar to epub older azw3/KF8 as a fallback on older Kindles.

The epub3 can work and be accessible, but epub2 is also accessible and works on more ereaders and apps. Many epub3 features are not supported by Amazon.

The Amazon "Kindle Previewer" isn't doing the same conversion as Amazon does on epub uploads. It's only a rough guide and its output can't be published on Amazon. I've abandoned it. The "Send to Kindle" email or web page and download via WiFi to Kindle and app might be more accurate than the Previewer, but isn't the same as the Publishing conversion Amazon does (I don't know why).

They deliver KFX for any ereader since PW1 and all apps and azw3/KF8 format for K3 to PW1. Since they abolished Download and Transfer mostly the K1, K2 and DX family can't get downloads. Only they and DXG are limited to mobi (KF7).

To fully test you need to publish, buy and unpublish after sync with four things:
Kindle App on Android
Kindle App on iOS
Any Kindle newer than a Paperwhite 1 (Gen5?) for KFX.
Any Kindle from K3 (gen3 keyboard ) or later up to Paperwhite 1, with the last FW (some of the older Kindles didn't have azw3/KF8 originally).

Note that are are several fixed layout Kindle formats (at least one is an encapuslated PDF). The app file ending doesn't indicate format. Older PC or Kindle downloads in onld mobi AKA KF7 can have .mobi or .azw (no 3) endings.

I put images each in their own <p> with nothing else, unless they are very small and several same height on one line (then they are in the same tag) or unless they are full screen.

Last edited by Quoth; Yesterday at 09:24 AM.
Quoth is offline   Reply With Quote
Old Yesterday, 09:27 AM   #72
Quoth
Still reading
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 14,509
Karma: 108666825
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper
Maybe RbnJrg has a list of epub3 features that work on azw3/KF8 & KFX via actual Amazon publishing* from an epub3 upload.

[* Not the Previewer or slightly better STK, but a bought Kindle ebook on the 4 viable platforms of iOS, Android, newer Kindles and older Kindles with working WiFi]

Last edited by Quoth; Yesterday at 09:30 AM.
Quoth is offline   Reply With Quote
Old Yesterday, 02:12 PM   #73
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,855
Karma: 8821117
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by bmilan View Post
...
I have three questions though:

1. Is there any chance this will work on Kindle after converting to mobi with kindle previewer? The client wants to get both ePub and mobi formats.
Kindle is anothe world. If you want the epub to be converted in KFX/azw3 format, then you can't employ advanced epub3/css3 properties. Take what Quoth said you about Kindle; the handle of svg is very limited under the KFX format.

Quote:
2. Is there a proper, working way to include alternative text for image in svg wrapper? The client wants e-book to be accessible.
You can include text inside a svg wrapper using the <text> and <tspan> tags (the usual and generally supported method, even in epub2), and more recently, using the <foreignObject> tag, which allows you to use xhtml and css inside a svg. However, if you want the widest possible compatibility, use <text> and <tspan>.

Quote:
3. Can I leave horizontal images in <figure> tags and put only problematic vertical ones in svg? Or should I do everything one way?
You could put all images in <figure> tags (vertical and horizontal) without using svg wrappers, if you works ONLY FOR EPUB3. I employ svg because I have to write less code for compatibility with epub2. But under epub3, with flex-box you can do "miracles" even with the img tag. For example:

1. In your xhtml file:

Code:
  <figure class="container">
    <div class="imageRow">
      <img src="../Images/Img1.jpg" alt="Imagen de ejemplo"/>
    </div>

    <figcaption class="textRow">
      <p>This is an example of text. You can change the font size to see how the image adapts. The goal is for the image to fill all available vertical space, leaving only enough space for the text. Additionally, the main container takes up 100% of the viewport's height.<br/><br/>This additional text is to test how the growth of text content affects the image space. As this text grows larger (simulating a font increase), the image should reduce its height to accommodate it.</p>
    </figcaption>
  </figure>
And in your .css stylesheet:

Code:
.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  margin: 0;
}

.imageRow {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  background-color: #00ff00; /* you can delete this, is for debugging purpose */
  min-height: 0;
}

.imageRow img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.textRow {
  flex: 0 0 auto;
  padding: 20px;
  background-color: #e0e0e0; /* you can delete this, is for debugging purpose */
}

.textRow p {
  margin: 0;
  font-size: 1em;
  text-align: center;
  line-height: 1.2;
}
Below I attach an epub so you can understand better the code. And if you open that ebook in Calibre Viewer for example and change the font size, you should get the following outputs:

Click image for larger version

Name:	One1.jpg
Views:	5
Size:	39.5 KB
ID:	218030Click image for larger version

Name:	One2.jpg
Views:	5
Size:	41.1 KB
ID:	218031Click image for larger version

Name:	One3.jpg
Views:	4
Size:	41.7 KB
ID:	218032Click image for larger version

Name:	One4.jpg
Views:	4
Size:	43.6 KB
ID:	218033

As you can see, the caption remains with the image no matter the font-size. When you increase the size of the text, then the size of the image decreases and that way everything stays together.
Attached Files
File Type: epub Figure_and_Caption_by_FlexBox.epub (297.0 KB, 3 views)
RbnJrg is offline   Reply With Quote
Old Yesterday, 08:30 PM   #74
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 47,324
Karma: 171313058
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by bmilan View Post
Hello! I've been lurking a lot here for a while now and decided it's time to ask for advice.
In the company I work at I sometimes prepare e-books for clients. I don't have much experience so I've always been doing epubs as simple as can be. But I always struggle with images.
1. Is there any chance this will work on Kindle after converting to mobi with kindle previewer? The client wants to get both ePub and mobi formats.
For Kindle format support for CSS, you can check Amazon. Two pages to look at are:

Attributes and Tags Supported by Enhanced Typesetting

HTML and CSS Tags Supported in Kindle Format 8

From my experience, even CSS listed as supported often has issues when comparing the output to the same CSS on a ePub renderer.
DNSB is offline   Reply With Quote
Old Yesterday, 08:44 PM   #75
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,855
Karma: 8821117
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by DNSB View Post
From my experience, even CSS listed as supported often has issues when comparing the output to the same CSS on a ePub renderer.
I agree. For example, KFX supports, in theory, <figure> and display: flex and float: left. Well, with the proper combination of the tag and properties, it is possible to avoid fragmentation (blank spaces originated by images, tables, etc.) under epub3. But under KFX one can't have the same output.
RbnJrg is offline   Reply With Quote
Reply

Tags
alignment, img, width


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Image Alignment Issues AndrewCanada Editor 2 10-06-2019 11:47 AM
Text - Image alignment problem MrB Sigil 10 11-03-2012 03:36 AM
Hello/Image and text alignment Derek R Introduce Yourself 3 06-26-2011 10:47 AM
Image alignment and spacing Derek R Kindle Formats 5 06-25-2011 12:57 PM


All times are GMT -4. The time now is 04:06 AM.


MobileRead.com is a privately owned, operated and funded community.