I have a CSS problem when the html page is rendered on iPad. Everything works good in other browsers. The problem is that I get a small space between the cells in my tables
I solved this in a weird way.
First up I added a Then I wrote some CSS inside of media queries which target the iPad's screen resolution. First up I added the following to Next I added the following to the You're going to want to apply This effectively draws a new background for the table cell which overflows the border issue without changing the size of the table cell. Since it's only an iPad issue we can use CSS in the I only tested this briefly but it seems to work without causing issues elsewhere.ios-table-fix
to the ios-table
to any of the table cells ().
ios-table
:overflow: hidden;
position: relative;
ios-table-fix
:bottom: -1px;
left: -1px;
position: absolute;
right: -1px;
top: -1px;
z-index: 1;
position: relative;
and z-index: 2;
to any content inside of the table cells, otherwise they will disappear. tag to avoid affecting everything.