I want to center the placeholder text for my textarea
s. The code below works fine in Chrome and IE, but is left-aligned in Safari:
::-webkit-inp
I came across this issue where in I had to center align the placeholder but text-align: center didn't work on SAFARI and after many trials I came across a solution, which will not guarantee the exact center but can suffice the requirement.
Solution => Use text-indent
input{
height:40px;
width:190px;
text-indent:60px;
}