Replies: 0 comments 1 reply
-
Here's a practical issue/use case which got reported: https://github.com/readium/r2-navigator-swift/issues/52 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Tables have always been quite an issue and their rendering can become quite terrible in CSS multicol (cells being cut off, vertical padding not being properly handled, etc.).
There’s no easy way out there, and it’s probably up to authors to find solutions but we can at least try reaching interop with some popular apps that will open the table in a dedicated web view (on top of the current one, with a close button) if the user double-clicks or double-taps one.
A few notes as to why this should be reasonable:
overflow-x
(on the web view itself), something we can’t easily do in the paged and scrolled views (we would have to add an extra wrapper around thetable
sinceoverflow
won’t work fortable
itself…);table
(excepted inlinestyle=""
) will not apply in the dedicated web view;Please feel free to add your thoughts, obviously.
Beta Was this translation helpful? Give feedback.
All reactions