부트스트랩 글리프콘


글리프콘

Bootstrap은 Glyphicons Halflings 세트에서 260개의 glyphicon을 제공합니다.

글리프콘은 텍스트, 버튼, 도구 모음, 탐색, 양식 등에 사용할 수 있습니다.

다음은 글리프콘의 몇 가지 예입니다.

봉투 문자 모양:

문양 인쇄:

검색 글리프콘:

글리프콘 다운로드:


글리프콘 구문

다음 구문으로 글리프콘이 삽입됩니다.

<span class="glyphicon glyphicon-name"></span>

위 구문 의 이름 부분은 글리프콘의 고유 이름으로 대체되어야 합니다.


글리프콘 예

다음 예에서는 글리프콘을 사용하는 다양한 방법을 보여줍니다.

예시

<p>Envelope icon: <span class="glyphicon glyphicon-envelope"></span></p>
<p>Envelope icon as a link:
  <a href="#"><span class="glyphicon glyphicon-envelope"></span></a>
</p>
<p>Search icon: <span class="glyphicon glyphicon-search"></span></p>
<p>Search icon on a button:
  <button type="button" class="btn btn-default">
    <span class="glyphicon glyphicon-search"></span> Search
  </button>
</p>
<p>Search icon on a styled button:
  <button type="button" class="btn btn-info">
    <span class="glyphicon glyphicon-search"></span> Search
  </button>
</p>
<p>Print icon: <span class="glyphicon glyphicon-print"></span></p>
<p>Print icon on a styled link button:
  <a href="#" class="btn btn-success btn-lg">
    <span class="glyphicon glyphicon-print"></span> Print
  </a>
</p>

연습으로 자신을 테스트하십시오

연습:

Glyphicon 클래스 값을 사용하여 범위가 "검색" 아이콘으로 표시되도록 합니다.

<span class=""></span>


전체 부트스트랩 Glyphicon 참조

모든 글리프콘에 대한 완전한 참조는 전체 Bootstrap Glyphicon Reference 로 이동하십시오 .