美文网首页基础前端
CSS 实现头像图片右上角数字显示

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

作者: CondorHero | 来源:发表于2019-03-10 12:59 被阅读7次

使用 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>

相关文章

网友评论

    本文标题:CSS 实现头像图片右上角数字显示

    本文链接:https://www.haomeiwen.com/subject/yeyupqtx.html