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
|
---
title: CSS Images
slug: Web/CSS/CSS_Images
tags:
- Aperçu
- CSS
- CSS Images
- Reference
translation_of: Web/CSS/CSS_Images
---
<div>{{CSSRef}}</div>
<p><em><strong>CSS Images</strong></em> est un module CSS qui définit les types d'images qui peuvent être utilisés (le type {{cssxref("<image>")}}, les URLs qu'elles contiennent, les dégradés et autres types d'images), comment les redimensionner et comment elles, ainsi que le contenu remplacé, interagissent avec les différents modèles de mise en page.</p>
<h2 id="Référence">Référence</h2>
<h3 id="Propriétés">Propriétés</h3>
<div class="index">
<ul>
<li>{{CSSxRef("image-orientation")}}</li>
<li>{{CSSxRef("image-rendering")}}</li>
<li>{{CSSxRef("image-resolution")}}</li>
<li>{{CSSxRef("object-fit")}}</li>
<li>{{CSSxRef("object-position")}}</li>
</ul>
</div>
<h3 id="Fonctions">Fonctions</h3>
<div class="index">
<ul>
<li>{{CSSxRef("linear-gradient", "linear-gradient()")}}</li>
<li>{{CSSxRef("radial-gradient", "radial-gradient()")}}</li>
<li>{{CSSxRef("repeating-linear-gradient", "repeating-linear-gradient()")}}</li>
<li>{{CSSxRef("repeating-radial-gradient", "repeating-radial-gradient()")}}</li>
<li>{{CSSxRef("conic-gradient")}}</li>
<li>{{CSSxRef("repeating-conic-gradient", "repeating-conic-gradient()")}}</li>
<li>{{CSSxRef("url", "url()")}}</li>
<li>{{CSSxRef("element", "element()")}}</li>
<li>{{CSSxRef("_image", "image()")}}</li>
<li>{{CSSxRef("cross-fade", "cross-fade()")}}</li>
</ul>
</div>
<h3 id="Types_de_données">Types de données</h3>
<div class="index">
<ul>
<li>{{cssxref("<image>")}}</li>
<li>{{cssxref("<gradient>")}}</li>
</ul>
</div>
<h2 id="Guides">Guides</h2>
<dl>
<dt><a href="/fr/docs/Web/CSS/Utilisation_de_dégradés_CSS">Utilisation de dégradés CSS</a></dt>
<dd>Présente un type spécifique d'images CSS, les <em>dégradés</em>, et comment les créer et les utiliser.</dd>
<dt><a href="/fr/docs/Web/CSS/CSS_Images/Sprites_CSS">Les <em>sprites</em> CSS</a></dt>
<dd>Décrit la technique classique consistant à regrouper plusieurs images en un seul document pour économiser des requêtes de téléchargement et rendre une page disponible plus rapidement.</dd>
</dl>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
<th scope="col">Commentaires</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS4 Images")}}</td>
<td>{{Spec2("CSS4 Images")}}</td>
<td>Ajout de {{CSSxRef("image-resolution")}},{{CSSxRef("conic-gradient")}} et {{CSSxRef("_image", "image()")}}.</td>
</tr>
<tr>
<td>{{SpecName("CSS3 Images")}}</td>
<td>{{Spec2("CSS3 Images")}}</td>
<td>Ajout de {{CSSxRef("image-orientation")}}, {{CSSxRef("image-rendering")}}, {{CSSxRef("object-fit")}} et {{CSSxRef("object-position")}}</td>
</tr>
<tr>
<td>{{SpecName("Compat", "#css-%3Cimage%3E-type", "CSS Gradients")}}</td>
<td>{{Spec2("Compat")}}</td>
<td>Standardisation de la version préfixée avec <code>-webkit</code> pour les valeurs de fonctions de dégradé</td>
</tr>
<tr>
<td>{{SpecName("CSS3 Values", "#urls", "<url>")}}</td>
<td>{{Spec2("CSS3 Values")}}</td>
<td> </td>
</tr>
<tr>
<td>{{Specname("CSS2.1", "syndata.html#uri", "<uri>")}}</td>
<td>{{Spec2("CSS2.1")}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName("CSS1", "#url", "<url>")}}</td>
<td>{{Spec2("CSS1")}}</td>
<td>Définition intiale.</td>
</tr>
</tbody>
</table>
|