We\'re finding the the iPad is displaying thin grey/black lines on our site. It seems to be some form of scaling-artefact on mobile Safari. I\'ve provided two snippets of
Since this is triggered by background color just use a 1px gif bg image of the same background color and repeat it. If you use modernizr you can write something like this:
.touch .class-of-td {
background: transparent url(../_img/services/1px-bgfix.gif) repeat;
}
This also works for elements that are displayed table-cell to get vertical-align: middle.