Set font-size on Form Elements for a Better Mobile Experience

To avoid mobile browsers (iOS Safari, et al.) from zooming in on HTML form elements when a <select> drop-down is tapped, add font-size to the selector rule:

  1. input[type="text"],
  2. input[type="number"],
  3. select,
  4. textarea {
  5. font-size: 16px;
  6. }

💃