blob: 826b7e922920f898c896a8c48b28c9f9fcc9ad1f (
plain)
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: '-webkit-text-fill-color'
slug: Web/CSS/-webkit-text-fill-color
translation_of: Web/CSS/-webkit-text-fill-color
---
{{CSSRef}}{{Non-standard_header}}
La propriété **`-webkit-text-fill-color`** définit la couleur utilisée pour dessiner le contenu des lettres qui forment un texte. Si cette propriété n'est pas définie, c'est la valeur de la propriété {{cssxref("color")}} qui sera utilisée.
```css
/* Valeurs de couleurs */
/* Type <color> */
-webkit-text-fill-color: red;
-webkit-text-fill-color: #000000;
-webkit-text-fill-color: rgb(100, 200, 0);
/* Valeurs globales */
-webkit-text-fill-color: inherit;
-webkit-text-fill-color: initial;
-webkit-text-fill-color: unset;
```
## Syntaxe
### Valeurs
- `<color>`
- : La couleur utilisée pour colorer les lettres du texte.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
p {
margin: 0;
font-size: 3em;
-webkit-text-fill-color: green;
}
```
### HTML
```html
<p>Ce texte est vert.</p>
```
### Résultat
{{EmbedLiveSample("Exemples", "380px", "60px")}}
## Spécifications
| Spécification | État | Commentaires |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ------------------------------------- |
| {{SpecName('Compat', '#the-webkit-text-fill-color', '-webkit-text-fill-color')}} | {{Spec2('Compat')}} | Définition initiale dans un standard. |
| [Référence CSS Safari -webkit-text-fill-color' dans ce document.](https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/doc/uid/TP30001266--webkit-text-fill-color) | Documentation non-officielle, non-standard. | Documentation initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.-webkit-text-fill-color")}}
## Voir aussi
- [Le billet de _Surfin' Safari_ qui annonce cette fonctionnalité (en anglais)](https://www.webkit.org/blog/85/introducing-text-stroke/)
- [L'article de CSS-Tricks qui décrit cette fonctionnalité (en anglais)](https://css-tricks.com/adding-stroke-to-web-text/)
- {{cssxref("-webkit-text-stroke-color")}}
- {{cssxref("-webkit-text-stroke-width")}}
- {{cssxref("-webkit-text-stroke")}}
|