Code/Web

bootstrap.css 없이 glyphicons 아이콘 사용하기

codens 2019. 2. 11. 00:47

- 부트스트랩 3에 포함되어 있던 Glyphicons가 부트스트랩 4에서는 빠졌다.

- Glyphicons를 사용하지 않는 것을 권장 하지만 굳이 사용하겠다면



    - CDN 이용
    - 참고 : https://stackoverflow.com/questions/37448338/how-to-include-glyphicons-without-using-bootstrap-css


* 방법 1
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css">

   

* 방법 2
<!-- 부트스트랩 v3.3.7 의 glyphicons 아이콘 추출, CDN 서버는 CloudFlare . size=14k-->
<link href="bootstrap.337-glyphicons-cf.css" rel="stylesheet">

bootstrap.337-glyphicons-cf.css




//


    - 사용 예 <i class="glyphicon glyphycon-heart"></i>


반응형