blob: 190d0fb17223d7c253afd007eb59cb3991d79ba3 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
---
title: '::part()'
slug: Web/CSS/::part
tags:
- '::part'
- CSS
- Draft
- Exp
- NeedsBrowserCompatibility
- NeedsExample
- Pseudo-element
- Reference
translation_of: Web/CSS/::part
---
{{CSSRef}}{{Draft}}{{SeeCompatTable}}
Le [pseudo-élément](/fr/docs/Web/CSS/Pseudo-elements) [CSS](/fr/docs/Web/CSS) **`::part`** représente n’importe quel élément dans un [arbre fantôme](/fr/docs/Web/Web_Components/Using_shadow_DOM) qui a un attribut {{HTMLAttrxRef("part")}} correspondant.
```css
custom-element::part(foo) {
/* Styles à appliquer à la partie `foo` */
}
```
## Syntaxe
{{CSSSyntax}}
## Exemples
### `<tabbed-custom-element>`
#### Arbre fantôme `<tabbed-custom-element>`
```html
<style type="text/css">
*, ::before, ::after {
box-sizing: border-box;
}
:host {
display: flex;
}
</style>
<div part="tab active">
Tab 1
</div>
<div part="tab">
Tab 2
</div>
<div part="tab">
Tab 3
</div>
```
#### Feuille de style chargée dans un arbre léger
```css
tabbed-custom-element::part(tab) {
color: #0c0c0dcc;
border-bottom: transparent solid 2px;
}
tabbed-custom-element::part(tab):hover {
background-color: #0c0c0d19;
border-color: #0c0c0d33;
}
tabbed-custom-element::part(tab):hover:active {
background-color: #0c0c0d33;
}
tabbed-custom-element::part(tab):focus {
box-shadow:
0 0 0 1px #0a84ff inset,
0 0 0 1px #0a84ff,
0 0 0 4px rgba(10, 132, 255, 0.3);
}
tabbed-custom-element::part(active tab) {
color: #0060df;
border-color: #0a84ff !important;
}
```
## Spécifications
| Spécification | État | Commentaires |
| -------------------------------------------------------------------- | ---------------------------------------- | -------------------- |
| {{SpecName("CSS Shadow Parts", "#part", "::part")}} | {{Spec2("CSS Shadow Parts")}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("css.selectors.part")}}
## Voir aussi
- L’attribut {{HTMLAttrxRef("part")}} - Utilisé pour définir des parties qui peuvent être sélectionnées par le sélecteur `::part()`
- L'attribut {{HTMLattrxref("exportparts")}} qui est utilisé pour exporter les parties d'un arbre _shadow_ imbriqué vers un arbre classique
- [Utilisation de CSS Shadow : `::part` et `::theme`](https://github.com/fergald/docs/blob/master/explainers/css-shadow-parts-1.md)
|