Text being cut in iphone
问题 I am having problems with textarea and input type text in ios devices. The bottom part of the text gets cuts off. How can i fix the text so it is displayed fully ? Here is the css: textarea { width: 97%; padding: 5px 1.5%; height: 70px; line-height: 150%; border: 1px solid #ccc; } 回答1: Define the height in "em", no "px" ... Pixels tell the browser the textarea height should be 70px, in EMs you tell the browser the height should be 5 rows for example (height: 5em;). 回答2: Can you try this one.