GLYPHICONS - bootstrap icon font hex value

前端 未结 4 626
眼角桃花
眼角桃花 2020-12-07 11:28

I\'d like to use Glyphicons icon font and I would need the hex value of each icon. I can\'t seem to find any resources on this on the Bootstrap website nor the Glyphicons w

4条回答
  •  清歌不尽
    2020-12-07 11:54

    If you want to use glyph icons with bootstrap 2.3.2, Add the font files from bootstrap 3 to your project folder then copy this to your css file

     @font-face {
      font-family: 'Glyphicons Halflings';
      src: url('../fonts/glyphicons-halflings-regular.eot');
      src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
    }
    

提交回复
热议问题