css

CSS로 알림 메시지(notification) 개수 표시하기

발전생 2020. 12. 28. 16:05

알림 메시지가 오버랩 되게 하는 방법

 

CSS

note-num {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    background-color: red;
    border-radius: 15px;
    display: inline-block;
}

#notification {
    background-image: url('../images/notification.svg');
    position: relative;
}

HTML

<div class="nav-right">
        <div class="nav-btn" id="friend"></div>
        <div class="nav-btn" id="notification"><span class="note-num">3</span></div>
        <a id="logout" role="button" href="{% url 'logout' %}">로그아웃</a>
</div>