css tags

by stofke

HTML

<a href="http://test.abzurb.com/tags/clean">
    <span>clean</span>
</a>

CSS

span {
    margin-left:10px;
    position: relative;
    height: 18px;
    padding: 2px 8px 2px 13px;
    display:inline-block;
    color:#fff;
    border: 1px solid #424445;
    background-color:#424445;
    border-radius: 5px;
    border-left:none;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    line-height: 14px;
}
span:before {
    content:"";
    border: solid transparent;
    position:absolute;
    top:-1px;
    left:-12px;
    width:0;
    height:0;
    border-color:transparent #424445 transparent transparent;
    border-style:solid;
    border-width:12px 12px 12px 0;
}
span:after {
    content:"";
    border-radius: 50%;
    width: 5px;
    height: 5px;
    top: 8px;
    left: -3px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: left top;
    position: absolute;
}