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