Placeholder font-size bigger than 16px

后端 未结 5 1299
不知归路
不知归路 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:19

    input {
        width: 450px;
        padding: 0px 15px;
    }
    
    input,
    input::-webkit-input-placeholder {
        font-size: 25px;
        line-height: 4;
    }

提交回复
热议问题