-1

I have a select box with one option with longer text. And on iPad it looks like that each option has a different font size. Have anybody meet with this problem?

Js fiddle

enter image description here

2 Answers2

0

Similar question: Some font-size's rendered larger on Safari (iPhone)

html {
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

Ref: https://stackoverflow.com/a/2711132/3177302

Ref: https://www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/

abdulwadood
  • 596
  • 6
  • 14
  • Unfortunately these questions have nothing common with author's question. It's not about zooming and browser rendering but about iOS options rendering – Timofei Davydik Aug 18 '20 at 09:28
-1

select the class in your css and change its font-size , if this doesnt work, use a media query and then change its font-size

MultiDutch
  • 36
  • 8