-
Notifications
You must be signed in to change notification settings - Fork 22.5k
/
index.md
75 lines (57 loc) · 1.59 KB
/
index.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
title: font-weight
slug: Web/SVG/Attribute/font-weight
page-type: svg-attribute
browser-compat: svg.global_attributes.font-weight
---
{{SVGRef}}
The **`font-weight`** attribute refers to the boldness or lightness of the glyphs used to render the text, relative to other fonts in the same font family.
> [!NOTE]
> As a presentation attribute, `font-weight` can be used as a CSS property. See the CSS {{cssxref("font-weight")}} property for more information.
You can use this attribute with the following SVG elements:
- {{SVGElement("text")}}
- {{SVGElement("textPath")}}
- {{SVGElement("tref")}}
- {{SVGElement("tspan")}}
## Example
```css hidden
html,
body,
svg {
height: 100%;
}
```
```html
<svg viewBox="0 0 200 30" xmlns="http://www.w3.org/2000/svg">
<text y="20" font-weight="normal">Normal text</text>
<text x="100" y="20" font-weight="bold">Bold text</text>
</svg>
```
{{EmbedLiveSample("Example", "200", "30")}}
## Usage notes
<table class="properties">
<tbody>
<tr>
<th scope="row">Value</th>
<td>
<code>normal</code> | <code>bold</code> | <code>bolder</code> |
<code>lighter</code> | {{cssxref("number")}}
</td>
</tr>
<tr>
<th scope="row">Default value</th>
<td><code>normal</code></td>
</tr>
<tr>
<th scope="row">Animatable</th>
<td>Yes</td>
</tr>
</tbody>
</table>
For a description of the values, please refer to the [CSS `font-weight`](/en-US/docs/Web/CSS/font-weight#values) property.
## Specifications
{{Specifications}}
## Browser compatibility
{{Compat}}
## See also
- {{cssxref("font-weight")}}