Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update(CSS): web/css/font-weight #3599

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions files/uk/web/css/font-weight/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,33 @@ font-weight: unset;

У змінних шрифтах TrueType та OpenType для реалізації змінної ширини застосовується варіація "wght".

Це демо завантажується з заданим `font-weight: 500;`. Змініть значення властивості `font-weight`, аби побачити, як зміниться вага тексту.
Це демо завантажується з заданим `font-weight: 500;`. Змініть значення властивості `font-weight` у селекторі `.sample`, аби побачити, як зміниться вага тексту (наприклад, поставте 200, 700). Клацніть "Грати" у блоках коду нижче, щоб редагувати приклад на Ігровому майданчику MDN:
alinkedd marked this conversation as resolved.
Show resolved Hide resolved

{{EmbedGHLiveSample("css-examples/variable-fonts/font-weight.html", '100%', 860)}}
```html live-sample___font-weight-example
<p class="sample">
...зустріти дванадцятиметрового мегалозавра, що шкандибає Лисою горою, неначе
слоноподібна ящірка, було б не дуже весело.
</p>
```

```css live-sample___font-weight-example
@font-face {
src: url("https://mdn.github.io/shared-assets/fonts/variable-fonts/MutatorSans.ttf");
font-family: "MutatorSans";
font-style: normal;
font-weight: 1 1000;
}

.sample {
text-transform: uppercase;
font-weight: 500;
font:
1.5rem "MutatorSans",
sans-serif;
}
```

{{EmbedLiveSample("font-weight-example", "", "200px")}}

## Доступність

Expand Down
Loading