我有CSS內容值的問題。它根本不顯示,只是代碼,就像圖片中一樣。任何人都可以解釋導致它的原因嗎我會嘗試修復它,而不在此處發佈代碼。自定義字體不適用於:在僞元素在CSS之前
HTML:
<a href="#"><i class="icon-map-marker"></i> Atlanta</a>
CSS:
.icon-map-marker:before{
content: "\f041"
}
@font-face {
font-family: 'FontAwesome';
src: url('fontawesome-webfont.eot');
src: url('fontawesome-webfont.eot') format('embedded-opentype'),
url('fontawesome-webfont.woff?') format('woff'),
url('fontawesome-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal
}
[class^="icon-"], [class*=" icon-"] {
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
text-decoration: inherit;
-webkit-font-smoothing: antialiased;
display: inline;
width: auto;
height: auto;
line-height: normal;
vertical-align: baseline;
background-image: none;
background-position: 0 0;
background-repeat: repeat;
margin-top: 0
}
你爲什麼不包括字體,真棒CDN鏈接<鏈接HREF =「// netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome。 css「rel =」stylesheet「>並使用那裏定義的類而不是手動包含源eot和ttf – bring2dip