0

我对高光有一些问题。

这是我的 CSS 代码:

html {
            -webkit-tap-highlight-color: rgba(0,0,0,0.7);
            -webkit-touch-callout: none;
        }

这是我的 HTML 代码:

<a href="javascript: location.href = 'level://?id=123456';">
    <div class="Box" id="Box0">
        <table class="BoldText" style="margin:8px;">
            <tr>
                <td valign="top" width="50">
                    <div class="ProfileImage">
                        <div style="background:url(<url>) top left no-repeat;"></div>
                    </div>
                </td>
                <td>gustaf98 published a level
                    <div style="width:220px; margin-top:4px;" class="lightText">Skiftnyckel</div>
                </td>
            </tr>
        </table>
    </div>
</a>

这是当我在 UIWebView 中触摸 iPhone 上的框时的结果:

预习

我的问题是,我怎样才能在整个盒子上获得黑色高光?

请帮忙!

4

1 回答 1

0

根据您的 CSS,您已将此应用于整个 HTML,而不是特定容器。你有这个工作的例子,或者一个链接?

尝试将其专门应用于要突出显示的框。

例如...

.box {
        -webkit-tap-highlight-color: rgba(0,0,0,0.7);
        -webkit-touch-callout: none;
    }
于 2012-11-02T23:23:37.837 回答