1. `font-family: 字體1, 字體2, 字體3, ...;`
這種指令使用一個(gè)或多個(gè)指定字體的名稱作為參數(shù),表示使用這些字體。例如:
```css
font-family: Arial, sans-serif;
這個(gè)CSS代碼使用Arial字體作為默認(rèn)字體,并且定義了一個(gè)字體 family 屬性,表示所有元素都需要使用 Arial字體。
2. `@font-face {font-family: 字體1, 字體2, 字體3, ...;}`
這種指令使用一個(gè)或多個(gè)指定字體的名稱作為參數(shù),并且指定了字體的渲染方式。例如:
```css
@font-face {
font-family: '字體1';
src: url('字體1.font') format('font/opentype');
font-family: '字體2';
src: url('字體2.font') format('font/opentype');
font-family: '字體3';
src: url('字體3.font') format('font/opentype');
這個(gè)CSS代碼定義了一個(gè)名為 "字體1" 的字體,它的渲染方式為 "font/opentype",并且定義了多個(gè)字體 family 屬性,表示所有元素都需要使用 "字體1" 字體。
3. `@font-face {font-family: 字體1, 字體2, 字體3, ...;font-weight: bold;font-style: italic;}`
這種指令使用一個(gè)或多個(gè)指定字體的名稱作為參數(shù),并且指定了字體的渲染方式、重量和風(fēng)格。例如:
```css
@font-face {
font-family: '字體1';
src: url('字體1.font') format('font/opentype');
font-family: '字體2';
src: url('字體2.font') format('font/opentype');
font-family: '字體3';
src: url('字體3.font') format('font/opentype');
font-weight: bold;
font-style: italic;
這個(gè)CSS代碼使用 "字體1"、"字體2"、"字體3" 三個(gè)字體作為參數(shù),并且定義了字體的渲染方式、重量和風(fēng)格,表示所有元素都需要使用這三個(gè)字體中的一款。