Placeholder text is not vertically centered in Safari

后端 未结 7 470
挽巷
挽巷 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 09:08

    None of the other answers worked for me, maybe because my input element is inside a flex box.

    I ended up needing to specify a line-height in px - with a large value for the line-height compared with the default for input elements.

    input[type="text"] { line-height: 32px; }
    

    Feels like a hack, but it's the only thing I could get to work.

提交回复
热议问题