Home > Software engineering >  HTML select input has a different size on IOS devices compared to that of android and windows device
HTML select input has a different size on IOS devices compared to that of android and windows device

Time:10-31

Is there a CSS Property that can be used to style it specifically for IOS devices so that it can look like that of windows and android?IOS ViewAndroid and windows view

I tried using -webkit but it didn't really work

CodePudding user response:

Safari makes it different, but it is possible to remove the appearance and style it with webkit and appearance.

 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;

Check this select example. https://codepen.io/FlashBuddy/pen/zYYOpgL

  • Related