Greetings. On my site, on any IOS-device, the input and textarea fields do not work, namely, characters are not entered.

 input[type="text"], input[type="submit"], input[type="button"], input[type="search"], input[type="password"], input[type~="text"], input[type~="search"], input[type~="password"], input[type~="email"], input.text, input.search, textarea, input.file { font-family: 'Lato', Calibri, Arial, sans-serif; } .input-text { width: 270px; width: calc(100% - 5px - 7px); padding: 5px 7px; font-size: 16px; outline: none; border: 0; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .mrgB-10 { margin-bottom: 10px; } .bl { display: block; } 
 <input type="text" id="login" class="input-text bl mrgB-10" placeholder="Email"> 

Tell me what could be the problem?

  • I would try to add the name attribute and the value attribute, in fact, these fields (input, textarea) are for data transfer with the name of the variable Name and the Value value, there can be the absence of these main fields and it sets this behavior. - Maksim Zlatov
  • @MaksimZlatov unfortunately did not help - Amandi

0