效果如下:

实现输入框前面的背景小图片

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
    #name{
        border: 1px solid #ccc;
        width: 160px;
        height: 22px;
        /*挤出位置用于设置背景图片*/
        padding-left:20px;
        background:url(imgs/user.png) no-repeat 3px 4px;    
        border-radius: 3px;
    }
    </style>
</head>
<body>
    用户名<input type="text" id="name"/>
</body>
</html>

 

相关文章:

  • 2022-12-23
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-11
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-21
  • 2021-06-01
  • 2022-12-23
  • 2021-10-17
  • 2022-01-16
  • 2022-12-23
相关资源
相似解决方案