Facebook like notification





<div id="noti_Container">
    <img src="http://l-stat.livejournal.com/img/facebook-profile.gif" alt="facebook-profile" />
    <div class="noti_bubble">6</div>
</div>



body {
    font-family:Calibri;
}
#noti_Container {
    position:relative;
    border:1px solid blue;
    width:16px;
    height:16px;
}
.noti_bubble {
    position:absolute;
    top: -6px;
    right:-6px;
    padding:1px 2px 1px 2px;
    background-color:red;
    color:white;
    font-weight:bold;
    font-size:0.55em;
 
    border-radius:30px;
    box-shadow:1px 1px 1px gray;
}



thanks to
http://stackoverflow.com/questions/5747863/easiest-css-for-facebook-style-red-notifications


Comments