Placeholder text is not vertically centered in Safari

后端 未结 7 536
挽巷
挽巷 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:56

    For me the best solution is to use line-height:normal and hack for IE 8.

    
    
    
    input {
        height: 35px;
        line-height: normal;
        line-height: 32px\0/; /* for IE 8 */
    }
    

提交回复
热议问题