How TO - Notification Buttons
Learn how to create notification buttons with CSS.
Inbox3
How To Create a Notification Button
Step 1) Add HTML:
Example
<a href="#" class="notification">
<span>Inbox</span>
<span class="badge">3</span>
</a>
<span>Inbox</span>
<span class="badge">3</span>
</a>
Step 2) Add CSS:
Example
.notification {
background-color: #555;
color: white;
text-decoration: none;
padding: 15px 26px;
position: relative;
display: inline-block;
border-radius: 2px;
}
.notification:hover {
background: red;
}
.notification .badge {
position: absolute;
top: -10px;
right: -10px;
padding: 5px 10px;
border-radius: 50%;
background: red;
color: white;
}
Try it Yourself »background-color: #555;
color: white;
text-decoration: none;
padding: 15px 26px;
position: relative;
display: inline-block;
border-radius: 2px;
}
.notification:hover {
background: red;
}
.notification .badge {
position: absolute;
top: -10px;
right: -10px;
padding: 5px 10px;
border-radius: 50%;
background: red;
color: white;
}
Go to ourCSS Buttons Tutorial to learn more about how to style buttons.

