Disable Android browser's input overlays?

后端 未结 8 1156
天涯浪人
天涯浪人 2020-12-02 17:17

I\'ve got a web page with some text inputs. The Android browser (at least on Android 2.3.4 which is all I\'ve got now) seems to overlay its own control over the input on the

8条回答
  •  一向
    一向 (楼主)
    2020-12-02 17:21

    -webkit-user-modify: read-write-plaintext-only;
    

    -webkit-tap-highlight-color:rgba(0,0,0,0); outline-style: none;

    This will working fine in Android 4.0 but when you use this code for numeric Input field doesn't support bcoz of read-write-plaintext-only, i got this problem, please anyone suggest.

提交回复
热议问题