Placeholder text is not vertically centered in Safari

后端 未结 7 463
挽巷
挽巷 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:13

    Works fine for me:

    <input type="text" name="first_name" placeholder="Search" style="height: 50px;">
    

    enter image description here

    Try changing this:

    #register-block-fields input {
    width: 230px;
    height: 41px;
    padding-left: 40px;
    padding-right: 20px;
    height: 41px; // Changed from line-height
    color: #878787;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    background: none;
    }
    
    0 讨论(0)
提交回复
热议问题