Put icon inside input element in a form

前端 未结 17 1758
旧时难觅i
旧时难觅i 2020-11-22 16:10

How do I put an icon inside a form\'s input element?

\"Screenshot

17条回答
  •  暖寄归人
    2020-11-22 16:16

    I find this the best and cleanest solution to it. Using text-indent on the input element

    CSS:

    #icon{
        background-image:url(../images/icons/dollar.png); 
        background-repeat: no-repeat; 
        background-position: 2px 3px;
    }
    

    HTML:

    
    

提交回复
热议问题