How to create a Label with close icon in Bootstrap? -


with bootstrap 3, might way of getting bordered label close icon? example of sort of thing stack overflow:

enter image description here

i ended http://jsfiddle.net/7zkcu/30/ (adapted http://maxwells.github.io/bootstrap-tags.html):

<span class="tag label label-info">   <span>example tag</span>   <a><i class="remove glyphicon glyphicon-remove-sign glyphicon-white"></i></a>  </span> 

css:

.tag {   font-size: 14px;   padding: .3em .4em .4em;   margin: 0 .1em; } .tag {   color: #bbb;   cursor: pointer;   opacity: 0.6; } .tag a:hover {   opacity: 1.0 } .tag .remove {   vertical-align: bottom;   top: 0; } .tag {   margin: 0 0 0 .3em; } .tag .glyphicon-white {   color: #fff;   margin-bottom: 2px; } 

Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -