html之输入框嵌套小图标

来源:互联网 发布:python 文字水印 编辑:程序博客网 时间:2024/05/20 23:56
<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>input添加小图标</title>    <style>        .phone-input {            padding-right: 20px;            background: url("勇气值.png") no-repeat scroll right center transparent;            height: 30px;        }    </style></head><body><div><input class='phone-input' type="text" id="phone" /></div></body></html>