사실 아래의 모든 어려움을 겪을 필요는 없습니다. 글꼴 폴더를 만들어서 js 및 css 파일과 동일한 디렉터리에 배치하기만 하면 올바르게 참조할 수 있습니다.
다음 파일이 있어야 합니다. (추천 학습: Bootstrap 비디오 튜토리얼)
glyphicons-halflings-regular.eot glyphicons-halflings-regular.svg glyphicons-halflings-regular.ttf glyphicons-halflings-regular.woff
관련 CSS 규칙은 dist 폴더의 css 폴더에 작성됩니다. CSS 및 bootstrap-min.css 파일.
글꼴 파일의 경로를 유연하게 변경해주세요
<style type="text/css"> @font-face { font-family: 'Glyphicons Halflings'; src: url('font/glyphicons-halflings-regular.eot'); src: url('font/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('font/glyphicons-halflings-regular.woff') format('woff'), url('font/glyphicons-halflings-regular.ttf') format('truetype'), url('fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } </style>
Bootstrap Tutorial 칼럼을 방문하여 알아보세요!
위 내용은 부트스트랩에서 글꼴을 참조하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!