基础前端

CSS 实现头像图片右上角数字显示

2019-03-10  本文已影响7人  CondorHero

使用 CSS 实现头像图片右上角数字显示,常见于微信、QQ等聊天工具。
实现思路

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS 实现图片右上角数字显示</title>
    <style>
        .box {
            height: 60px;
            width: 60px;
            position: relative;
            margin: 100px auto;
        }
        .box img {
            width: 100%;
            height: 100%;
        }
        .box .number {
            position: absolute;
            left: 80%;
            top: -12px;
            background-color: red;
            color: #fff;
            line-height: 23px;
            width: 23px;
            border-radius: 24px;
            text-align: center;
            font-size: 17px;
        }
    </style>
</head>
<body>
    <div class="box">
        <img src="https://upload.jianshu.io/users/upload_avatars/16069544/8e5ccee8-9c9e-4345-bbaa-8f32ec595557.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240" alt="">
        <span class = "number">2</span>
    </div>
</body>
</html>
上一篇 下一篇

猜你喜欢

热点阅读