1
0
-1

How can we increase the size of the radio buttons on our online forms for smaller touch screens?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can add this media query as a start and adjust as needed.

      @media only screen and (min-device-width : 350px) and (max-device-width : 550px) {
      input[type='radio'] { 
      transform: scale(2); 
      margin-left: 10px;
      margin-right: 10px;
      padding: 10px;
      }
      }
        CommentAdd your comment...