The input content of input is not fully displayed in ios system.

problem description

focus on the input text in the input input box on the ios system. Only the first word can be displayed, and none of the subsequent words can be displayed. Only the cursor is moving
put away the keyboard and display normal

after being out of focus.

the environmental background of the problems and what methods you have tried

location, select auto, line-height and other methods have been tried, but it is of no use

related codes

.list_body{position:relative; width:100%; -webkit-user-select: auto;}
.list_body input{
   width:100%;
   height:2.25rem;
   line-height:normal;
   font-size:0.6rem; 
   color:-sharp686868; 
   border:none; 
   vertical-align:middle; 
   font-family:inherit; 
   -webkit-user-select: auto;
  }

clipboard.png

clipboard.png

Apr.28,2022

add a focus event to the input box:

  

landlord, it really works. Thank you for sharing

Menu