blob: 2d966e1fc8710ba012205374d33786d8a66dbaf0 (
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
101
102
103
104
105
106
107
108
109
110
111
112
113
|
---
title: '::part()'
slug: 'Web/CSS/::part'
tags:
- '::part'
- CSS
- Draft
- Exp
- NeedsBrowserCompatibility
- NeedsExample
- Pseudo-element
- Reference
translation_of: 'Web/CSS/::part'
---
<div>{{CSSRef}}{{Draft}}{{SeeCompatTable}}</div>
<p>Le <a href="/fr/docs/Web/CSS/Pseudo-elements">pseudo-élément</a> <a href="/fr/docs/Web/CSS">CSS</a> <strong><code>::part</code></strong> représente n’importe quel élément dans un <a href="/fr/docs/Web/Web_Components/Using_shadow_DOM">arbre fantôme</a> qui a un attribut {{HTMLAttrxRef("part")}} correspondant.</p>
<pre class="brush: css no-line-numbers">custom-element::part(foo) {
/* Styles à appliquer à la partie `foo` */
}
</pre>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">{{CSSSyntax}}</pre>
<h2 id="Exemples">Exemples</h2>
<h3 id="<tabbed-custom-element>"><code><tabbed-custom-element></code></h3>
<h4 id="Arbre_fantôme_<tabbed-custom-element>">Arbre fantôme <code><tabbed-custom-element></code></h4>
<pre class="brush: 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>
</pre>
<h4 id="Feuille_de_style_chargée_dans_un_arbre_léger">Feuille de style chargée dans un arbre léger</h4>
<pre class="brush: 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;
}
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
<th scope="col">Commentaires</th>
</tr>
<tr>
<td>{{SpecName("CSS Shadow Parts", "#part", "::part")}}</td>
<td>{{Spec2("CSS Shadow Parts")}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<div class="hidden">Le tableau de compatibilité présenté sur cette page est généré à partir de données structurées. Si vous désirez contribuer à ces données, veuillez visiter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et nous envoyer une demande de récupération.</div>
<p>{{Compat("css.selectors.part")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>L’attribut {{HTMLAttrxRef("part")}} - Utilisé pour définir des parties qui peuvent être sélectionnées par le sélecteur <code>::part()</code></li>
<li>L'attribut {{HTMLattrxref("exportparts")}} qui est utilisé pour exporter les parties d'un arbre <em>shadow</em> imbriqué vers un arbre classique</li>
<li><a href="https://github.com/fergald/docs/blob/master/explainers/css-shadow-parts-1.md">Utilisation de CSS Shadow : <code>::part</code> et <code>::theme</code></a></li>
</ul>
|