From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/svg/attribute/font-weight/index.html | 86 +++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 files/ru/web/svg/attribute/font-weight/index.html (limited to 'files/ru/web/svg/attribute/font-weight/index.html') diff --git a/files/ru/web/svg/attribute/font-weight/index.html b/files/ru/web/svg/attribute/font-weight/index.html new file mode 100644 index 0000000000..1985975c56 --- /dev/null +++ b/files/ru/web/svg/attribute/font-weight/index.html @@ -0,0 +1,86 @@ +--- +title: font-weight +slug: Web/SVG/Attribute/font-weight +tags: + - SVG +translation_of: Web/SVG/Attribute/font-weight +--- +

« SVG Attribute reference home

+ +

Атрибут font-weight позволяет выбрать из шрифтового семейства начертание шрифта с указанной насыщенностью (иначе говоря, толщиной линий знаков, "жирностью") .

+ +

Как и любой атрибут представления,  font-weight может быть использован в виде свойства в CSS стилях, см. {{ cssxref("font-weight","CSS font-weight") }} для подробной информации.

+ +

Контекст применения

+ + + + + + + + + + + + + + + + + + + + +
КатегорииАтрибут представления
Значенияnormal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | inherit
АнимируемостьДа
Нормативный документSVG 1.1 (2nd Edition)
+ +

Значение ключевых слов

+ + + +

Предостережения

+ +

Для многих шрифтов доступны только значения 400 и 700 - нормальное и полужирное начертания соответственно. Доступные значения могут варьироваться в зависимости от шрифта.

+ +

Пример

+ +

css

+ +
p.normal {font-weight:normal;}
+p.thick {font-weight:bold;}
+p.thicker {font-weight:900;}
+ +

html

+ +
<p class="normal">This is a paragraph.</p>
+<p class="light">This is a paragraph.</p>
+<p class="thick">This is a paragraph.</p>
+<p class="thicker">This is a paragraph.</p>
+
+ +

Элементы

+ +

Следующие элементы могут использовать атрибут font-weight.

+ + + +

Поддержка браузерами

+ + + +

{{Compat("svg.attributes.presentation.font-weight")}}

+ +

Смотри также

+ + -- cgit v1.2.3-54-g00ecf