HTML5 image icon to input placeholder

后端 未结 5 2009
一整个雨季
一整个雨季 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:19

    `CSS:

    input#search{
     background-image: url(bg.jpg);
     background-repeat: no-repeat;
     text-indent: 20px;
    }
    
    input#search:focus{
     background-image:none;
    }
    

    HTML:

    `
    

提交回复
热议问题