tao.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. .box {
    10. position: relative;
    11. width: 74px;
    12. height: 88px;
    13. border: 1px solid #ccc;
    14. margin: 100px auto;
    15. font-size: 12px;
    16. text-align: center;
    17. color: #f40;
    18. /* display: block; */
    19. }
    20. .box img {
    21. width: 60px;
    22. margin-top: 5px;
    23. }
    24. .close-btn {
    25. position: absolute;
    26. top: -1px;
    27. left: -16px;
    28. width: 14px;
    29. height: 14px;
    30. border: 1px solid #ccc;
    31. line-height: 14px;
    32. font-family: Arial, Helvetica, sans-serif;
    33. cursor: pointer;
    34. }
    35. </style>
    36. </head>
    37. <body>
    38. <div class="box">
    39. 淘宝二维码
    40. <img src="images/tao.png" alt="">
    41. <i class="close-btn">×</i>
    42. </div>
    43. </body>
    44. </html>