Hello,
It's not difficult my friend, below the code to do it (i am inspired of the tags used in stackoverflow.com) !
<A HREF="./tag/html" CLASS="qa-tag-link t-fav">html<span class="supprimer-tag"></span></A>
And the CSS :
.qa-tag-link {font-size:11px; color:#407192; font-weight:normal; padding:3px 5px; margin-bottom:3px; background:#D8E6EF; display:-moz-inline-stack; display:inline-block; border-bottom:1px solid #436B84; border-right:1px solid #809FB4; vertical-align:middle; text-decoration:none;} /* inline-block for IE, -moz-inline-stack for early FF */
.qa-tag-link:hover {text-decoration:none; color:#ffffff; background-color:#356FCB;}
.t-fav
{
/*padding-right: 15px;*/
margin-right: 15px;
}
.supprimer-tag
{
background: url('delete.png') no-repeat scroll 0 0 transparent;
overflow:hidden;
vertical-align:top;
margin-top:1px;
margin-left:3px;
width:14px;
height:14px;
display:inline-block;
white-space: nowrap;
text-indent: -99999em;
}
.supprimer-tag:hover,.supprimer-tag:active{background: url('delete-hover.png') no-repeat scroll 0 0 transparent; cursor:pointer;}
PS : you must replace 'delete.png' and 'delete-hover.png' with your own images.
And below the result :
Cordially.