diff --git a/guide/english/css/fonts/index.md b/guide/english/css/fonts/index.md index 9ab954f2b2..2ab4194da9 100644 --- a/guide/english/css/fonts/index.md +++ b/guide/english/css/fonts/index.md @@ -5,9 +5,9 @@ title: Fonts The CSS font properties define the font family, weight, size, variant, line height and style of a text. ### Font family -The font family of a text is simply set by using the `font-family` property. +The font family of a text is set by using the `font-family` property. -It works with a *fallback* system, if your browser does not support the first font, it tries with the next one and so on. If the name of the font is more than one word it must be surrounded by quotes. +It works with a *fallback* system, meaning if your browser does not support the first font, it tries with the next one and so on. If the name of the font is more than one word it must be surrounded by quotes. ```css p { @@ -80,13 +80,14 @@ p { ``` ### Font responsiveness -The text size can be set with a vw(viewport width) unit. -That way the text size will follow the size of the browser window. +The text size can be set with a `vw` (viewport width) unit. +This will allow the text to adjust to the size of the browser window. ```html -