How to disable clickable tables on iBooks for iPad
I have designed an EPUB and when upload it and see it on iBooks on my iPad, everything looks fine except for the fact that I have some html tables that when I tap on them (accidentally), they open up in a new window and show the unformatted content of said table. In other words, all tables have a clickable behaviour by default. How can I disable such default table's behavior?
I tried something like adding these properties to the css style :
This, on the table's <table> tag
display: table !important;
or this on the table's <td> tag
display: table-cell !important;
But to no avail. What else can I do to disable the clickable behaviour of the tables, or is this something by default with no solution?
--------------- UPDATE --------------
THIS WORKED
table {
pointer-events: none;
}
iPad