I'm facing a peculiar problem with placeholders when using the Edge browser. In my current project, I need to implement a textarea with a specific text-indent property. However, on Edge, the placeholder text appears displaced more than expected.
To help you understand better, I have created a small demo: https://codepen.io/anon/pen/boVaLK
textarea {
width:500px;
height: 200px;
text-indent: 25px;
}
<textarea placeholder="start typing"></textarea>
Do you have any suggestions or ideas on how to fix this issue?