Using a Glyphicon as an LI bullet point (Bootstrap 3)

前端 未结 6 1135
暖寄归人
暖寄归人 2020-12-13 00:22

How can I change the bullet points in an HTML list and use the glyphicons that come with Bootstrap 3?

So that:



        
6条回答
  •  忘掉有多难
    2020-12-13 00:32

    I'm using a simplyfied version (just using position relative) based on @SimonEast answer:

    li:before {
        content: "\e080";
        font-family: 'Glyphicons Halflings';
        font-size: 9px;
        position: relative;
        margin-right: 10px;
        top: 3px;
        color: #ccc;
    }
    

提交回复
热议问题