Placeholder font-size bigger than 16px

后端 未结 5 1297
不知归路
不知归路 2021-02-01 13:53

I have read a couple of articles about styling the placeholder of an input field using ::-webkit-input-placeholder in HTML5. It works perfectly, except for one thin

5条回答
  •  独厮守ぢ
    2021-02-01 14:17

    You have to add 'overflow: visible' to the placeholder in your css to get rid of the cropping.

    ::placeholder{
    overflow: visible;
    }
    

提交回复
热议问题