HTML5 image icon to input placeholder

后端 未结 5 1996
一整个雨季
一整个雨季 2020-11-30 02:51

I\'d like to add an image icon to an input placeholder, like in this picture: \"enter

5条回答
  •  粉色の甜心
    2020-11-30 03:23

    I don't know whether there's a better answer out there as time goes by but this is simple and it works;

    input[type='email'] {
      background: white url(images/mail.svg) no-repeat ;
    }
    input[type='email']:focus {
      background-image: none;
    }
    

    Style it up to suit.

提交回复
热议问题