I'm experiencing a simple, yet unexpected rendering issues when browsing my webpage using Mobile Safari and iOS.

Basically, my page has tabs, which are made of three divs and a "a href" inside the center div of the tab. The divs on the sides contain a background while on the center the link has an image. For some reason, the background on the a href displays horizontal yellow lines on Mobile Safari:

http://i.stack.imgur.com/jlKHf.jpg

While on desktop browsers it works fine:

[couldn't add another link, it should be whiteish]

.TabPanelLinks_true {
    background: url(".../seltab-center.jpg") repeat-x scroll 0 0 transparent;
}

.TabPanelElement a {
    color: #5C5C5C;
    cursor: pointer;
    display: block;
    font-family: arial,helvetica,clean,sans-serif;
    font-size: 11px;
    font-weight: normal;
    line-height: 22px;
    margin: 0;
    padding: 0 5px;
    text-align: center;
    text-decoration: none;
}

I've tried with a different image, no success. I tried adding the background to the center div, no success. Any idea of what's happening?

Thanks in advance.

link|improve this question

50% accept rate
feedback

1 Answer

I wish there was a way to experiment with this, seeing as I don't have an iPad--but possibly specify a border : none; ?

You could try a single div, with the 'ends' of the tab as absolutely positioned images to the left : 0 and right : 0 ...an alternative method that shouldn't look any different, but may fix the issue? If you need the transparent background on the tab graphics, you could absolutely position the images outside of the div, and adjust the margin/padding accordingly.

link|improve this answer
Thanks for the answer. Let me test a few different configurations to see if that solves the issue. – jorgemoya Jan 20 '11 at 19:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.