How to create a Label with close icon in Bootstrap?

前端 未结 4 1404
名媛妹妹
名媛妹妹 2021-02-01 02:57

With Bootstrap 3, what might be a good way of getting a bordered label with close icon? An example of the sort of thing from Stack Overflow:

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-01 03:14

    With Bootstrap 4 it could be done with

    
      Dismissable badge
      
    
    

    and

    .badge {
      .close {
        padding-right: $badge-padding-x;
        padding-left: $badge-padding-x;
        margin-right: -$badge-padding-x;
        font-size: inherit;
        color: inherit;
        text-shadow: none;
      }
    }
    
    

    It realized it PR https://github.com/twbs/bootstrap/pull/26823 but still didn't merged in master (delayed to v5).

    Demo: https://codepen.io/gijsbotje/pen/OjOmby

提交回复
热议问题