Created
December 1, 2016 15:57
-
-
Save talha08/445f3d77d1f65916bfb093f834fd141e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.................................... | |
Html | |
.................................... | |
<button class="badge1" data-badge="6">Badge Notification Example</button> | |
<br> | |
<a href="" class="badge1" data-badge="27">Badge Notification Example</a> | |
.................................... | |
CSS | |
.................................... | |
.badge1 { | |
position:relative; | |
} | |
.badge1[data-badge]:after { | |
content:attr(data-badge); | |
position:absolute; | |
top:-1px; | |
right:-2px; | |
font-size:1em; | |
background:red; | |
color:white; | |
width:18px;height:18px; | |
text-align:center; | |
line-height:18px; | |
border-radius:50%; | |
box-shadow:0 0 1px #333; | |
} | |
.badge1[data-badge=””]:after { | |
content: none; /*for hiding if there is no content */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment