1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-19 04:52:13 +02:00

Merge pull request #3815 from Fotia5230/patch-1

[CSS/zh-cn] Fixed typo
This commit is contained in:
Max Schumacher
2020-01-29 16:26:37 +01:00
committed by GitHub

View File

@@ -132,7 +132,7 @@ div.some-parent.class-name {}
font-family: Arial;
font-family: "Courier New"; /* 使用双引号包裹含空格的字体名称 */
font-family: "Courier New", Trebuchet, Arial; /* 如果第一个
字体没找到,浏览器会使用第二个字体,一次类推 */
字体没找到,浏览器会使用第二个字体,以此类推 */
}
```