Reputation: 33
when I type in the input field, it is not visible in iphone browsers like chrome,safari,firefox but it is working fine in android browers.
Upvotes: 1
Views: 5263
Reputation: 361
Add in your CSS the transform
attribute to the input
:
transform: translateZ(0);
Upvotes: 1
Reputation: 33
This issue is happen in iphone because of Font-family:Gotham. You can change the font-family for input field and it will work fine in iphone browsers.
Upvotes: 0
Reputation: 748
Don't know exactly why, but it's something wrong with a font-family. If I add a font-family explicitly to these inputs or to their container, like:
.timegroup {
font-family: Arial; //or Helvetica, or whatever
}
it works on iphone browsers.
Upvotes: 2