My htmlcode:
... <input placeholder="Username" type="text" name="username" id="username"> <input id="inputPwd" placeholder="Password" type="password" name="password"> ...
With my CSS:
input { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); color: #000000; text-decoration: none; border: 0px solid white; outline: 0 none; } input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); border: 0px solid #000000; outline: 0 none; }
My goal is to remove boundaries. It works great in Firefox, Google Chrome, iPhone Safari, etc. Unfortunately, I have a problem with Android 2.3.4.
With Android, when I focus on the password field, I see a thin black frame ... I tried all the CSS combinations, nothing helped ...
Many thanks for your help!
source share