0

私はiPhoneでenyoボタンを使用しています....問題は、ナビゲーションのためにボタンをクリックすると、ボタンの上に黒い色が表示されることです....それが影か境界線色か背景色かわかりません。 ...これを削除したい...plzは私を助けます....

my code goes here

     .onyx-Button2 {
        outline: 0;
        color: #FFFFFF;
        font-size: 16px;
        text-align: center;
        white-space: nowrap;
        margin: 0;
        padding: 1px 1px;
        overflow: hidden;
        border-radius: 3px;
        /* for IE8 */
        border: 1px solid #777;
        border: 1px solid rgba(15, 15, 15, 0.2);
            /*
        The border and the gradient interact in a strange way that
        causes the bottom-border (top if the gradient is aligned top)
        to be lighter than other borders.
        We can fix it by using the darker bottom border below, but
        then there are a few rogue pixels that end up very dark.
    */ 
        box-shadow: inset 0px 1px 0px rgba(255,255,255,0.2);
        background: #E1E1E1 url(../../images/gradient.png) repeat-x bottom;
        background-size: contain;
        text-overflow: ellipsis;


}
4

1 に答える 1

1

おそらく、iOS のブラウザー内で設定された既定値に依存している可能性があります。すべての適切なプロパティを設定して、すべてのベースをカバーします。

だから追加

background-color:#ffffff; // Change this to your color you want

これは、iOS が一部の CSS をデフォルト設定する方法であると思われます。また、画像を背景として処理する方法にも関係している可能性があります。残念ながら、iOS はほとんどの標準に対応していますが、特定の CSS を実装する方法が異なります。

于 2013-01-07T15:21:57.623 に答える