From 2ab6bdeb793fc2ac5d29aae4b9dc8d9ad9aee639 Mon Sep 17 00:00:00 2001 From: Shi974 <42869389+Shi974@users.noreply.github.com> Date: Sat, 19 Jan 2019 03:07:40 +0400 Subject: [PATCH] Added short description (#27814) --- guide/english/typography/font-weight-and-style/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/guide/english/typography/font-weight-and-style/index.md b/guide/english/typography/font-weight-and-style/index.md index 35c6e01b27..2e29806efe 100644 --- a/guide/english/typography/font-weight-and-style/index.md +++ b/guide/english/typography/font-weight-and-style/index.md @@ -2,14 +2,15 @@ title: Font Weight and Style --- ## Font Weight and Style +The font-weight is used to define the thickness of characters. It is used in HTML (outdated) and CSS. It can be determined in two different ways. -Font-weight can be written as text values: +* Font-weight can be written as text values: ``` font-weight: normal; font-weight: bold; ``` -Or as a numerical value from `100` to `900` (in multiples of 100): +* Or as a numerical value from `100` to `900` (in multiples of 100): ``` font-weight: 400; /* equal to 'normal' above */ font-weight: 700; /* equal to 'bold' above */