I\'m trying to create a textarea that looks exactly like a div.
textarea
div
However, on iOS there\'s 3 pixels coming from somewhere that I can\'t remove.>
text-intend doesn't work when having multiple lines, (as Jonathan mentioned in a comment at the accepted answer).
text-intend
So, this worked for me on iPhone 6:
textarea { margin-left: -3px; &::placeholder { padding-left: 3px; } }