最佳答案
如何在 CSS 中使用多于 @font-face
的规则?
我在样式表中插入了以下内容:
body {
background: #fff url(../images/body-bg-corporate.gif) repeat-x;
padding-bottom: 10px;
font-family: 'GestaRegular', Arial, Helvetica, sans-serif;
}
@font-face {
font-family: 'GestaReFogular';
src: url('gestareg-webfont.eot');
src: local('☺'),
url('gestareg-webfont.woff') format('woff'),
url('gestareg-webfont.ttf') format('truetype'),
url('gestareg-webfont.svg#webfontg8dbVmxj') format('svg');
}
目前这只适用于站点上的整个文本体。但是,我想指定 h1
使用不同的字体。我怎么能这么做?