Centering textarea placeholder text in Safari

前端 未结 5 2045
时光取名叫无心
时光取名叫无心 2021-01-06 03:36

I want to center the placeholder text for my textareas. The code below works fine in Chrome and IE, but is left-aligned in Safari:

::-webkit-inp         


        
5条回答
  •  独厮守ぢ
    2021-01-06 03:40

    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;
    }
    

提交回复
热议问题