Placeholder text is not vertically centered in Safari

后端 未结 7 468
挽巷
挽巷 2021-02-02 08:30

Do you have any idea on how to get the placeholder attribute to vertically center in safari? Though when you start typing, the text is perfectly centred.

7条回答
  •  再見小時候
    2021-02-02 08:50

    Had this bug too. Setting line-height in ems fixed this for me. It looks the same in Chrome, Safari(desktop and iOS) and Firefox. and I added a \9 trick to get vertical centering in IE. here's my css

    height: 36px;       
    line-height: 1.2em;
    line-height: 26px\9; /*for IE */
    

提交回复
热议问题