美文网首页js程序员
CSS实现头像右上角消息数字提示

CSS实现头像右上角消息数字提示

作者: 祈澈菇凉 | 来源:发表于2019-03-06 11:42 被阅读0次

    今天写个简单的小demo,关于CSS实现头像右上角消息数字提示,样式如下如图所示,在微信和扣扣消息里面比较常见。


    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
            <style>
                .alarm {
                    position: relative;
                    width: 60px;
                    height: 60px;
                    margin: 60px;
                }
                .alarm img {
                    width: 60px;
                    height: 60px;
                }
                .divright {
                    position: absolute;
                    color: white;
                    font-size: 17px;
                    background-color: red;
                    width: 23px;
                    height: 23px;
                    line-height: 23px;
                    left: 80%;
                    top: -12px;
                    text-align: center;
                    -webkit-border-radius: 24px;
                    border-radius: 24px;
                }
            </style>
        </head>
        <body>
            <div class="alarm">
                <img src="img/1.png" />
                <div class="divright">
                    3
                </div>
            </div>
        </body>
    </html>
    

    原文作者:祈澈姑娘 技术博客:https://www.jianshu.com/u/05f416aefbe1
    90后前端妹子,爱编程,爱运营,文艺与代码齐飞,魅力与智慧共存的程序媛一枚。
    坚持总结工作中遇到的技术问题,坚持记录工作中所所思所见,对于博客上面有不会的问题,可以加入qq技术交流群聊:649040560。

    相关文章

      网友评论

        本文标题:CSS实现头像右上角消息数字提示

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