mess.png

    right.png

    wrong.png

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
    7. <title>Document</title>
    8. <style>
    9. div {
    10. width: 600px;
    11. margin: 100px auto;
    12. }
    13. .message {
    14. display: inline-block;
    15. font-size: 12px;
    16. color: #999;
    17. background: url(images/mess.png) no-repeat left center;
    18. padding-left: 20px;
    19. }
    20. </style>
    21. </head>
    22. <body>
    23. <div class="register">
    24. <input type="password" class="ipt">
    25. <p class="message">请输入6~16位密码</p>
    26. </div>
    27. </body>
    28. </html>