CSS 'font-family' 的值什么时候应该有引号?
font-family: arial
和都见过font-family: "arial"
。
作为一个具体的例子,我以这种方式声明一个字体:
@font-face {
font-family: 'entypo';
font-style: normal;
font-weight: 400;
src: url('/css/fonts/entypo.woff') format('woff');
}
让元素使用这个字体系列的正确 CSS 是什么?