Put icon inside input element in a form

前端 未结 17 1743
旧时难觅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:19

    You can try this:

    input[type='text'] {
        background-image: url(images/comment-author.gif);
        background-position: 7px 7px;
        background-repeat: no-repeat;
    }

提交回复
热议问题