-
Notifications
You must be signed in to change notification settings - Fork 1
/
state_of_css.yml
528 lines (457 loc) · 16.9 KB
/
state_of_css.yml
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
locale: en-US
namespace: css
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_css.intro
t: >
CSS évolue plus rapidement que jamais.
Flexbox, Grid, Multi-Column... Sans parler des tout nouveaux paradigmes comme CSS-in-JS.
Après le succès de notre questionnaire annuel [State Of JavaScript](https://stateofjs.com), nous avons décidé
de nous attaquer au monde des styles et sélecteurs. Nous comptons sur vous pour nous aider à identifier les dernières
tendances et trouver les modules les plus intéressants à apprendre et à utiliser!
###########################################################################
# Sections
###########################################################################
- key: sections.layout.title
t: Layout
- key: sections.layout.description
t: Comment positionnez-vous des éléments sur l'écran ?
- key: sections.shapes_graphics.title
t: Formes et Graphiques
- key: sections.shapes_graphics.description
t: Contrôler la forme et l'affichage des éléments
- key: sections.interactions.title
t: Interactions
- key: sections.interactions.description
t: Contrôler comment l'utilisateur interragi avec la page
- key: sections.typography.title
t: Typography
- key: sections.typography.description
t: Mettre en forme le texte.
- key: sections.animations_transforms.title
t: Animations et Transformations
- key: sections.animations_transforms.description
t: Animer et transformer les éléments.
- key: sections.media_queries.title
t: Media Queries
- key: sections.media_queries.description
t: Façons d'adapter votre site aux terminaux et aux préférences de l'utilisateur
- key: sections.other_features.title
t: Autres fonctionnalités
- key: sections.other_features.description
t: Autres fonctionnalités CSS.
- key: sections.units_selectors.title
t: Unités et Sélecteurs
- key: sections.units_selectors.description
t: Testez vos connaissances des unités CSS et des sélecteurs
- key: sections.pre_post_processors.title
t: Pre-/Post-processors
- key: sections.pre_post_processors.description
t: Outils qui améliorent CSS.
- key: sections.pre_post_processors_others.title
t: Autres Pré-/Post-processeurs
- key: sections.css_frameworks.title
t: Frameworks CSS
- key: sections.css_frameworks.description
t: Librairies qui fournissent des composants et styles pré-réalisés.
- key: sections.css_frameworks_others.title
t: Autres Frameworks CSS
- key: sections.css_methodologies.title
t: Méthodologies CSS
- key: sections.css_methodologies.description
t: Méthodes codifiés d'écrire du CSS plus propre.
- key: sections.css_methodologies_others.title
t: Autres méthodologies CSS
- key: sections.css_in_js.title
t: CSS-in-JS
- key: sections.css_in_js.description
t: Librairies permettant d'intégrer du CSS dans du code JavaScript.
- key: sections.css_in_js_others.title
t: Autres librairies CSS-in-JS
- key: sections.environments.title
t: Environnements
- key: sections.environments.description
t: Pour quels environments écrivez-vous du CSS ?
###########################################################################
# Options
###########################################################################
# CSS for print
- key: options.css_for_print.0
t: Je n'imprime (quasiment) jamais du style
- key: options.css_for_print.0.short
t: Jamais
- key: options.css_for_print.1
t: J'imprime parfois du style
- key: options.css_for_print.1.short
t: Occasionnellement
- key: options.css_for_print.2
t: J'écris du style d'impression pour la plupart de mes projets
- key: options.css_for_print.2.short
t: Souvent
- key: options.css_for_print.3
t: Je me concentre principalement sur le CSS pour l'impression
- key: options.css_for_print.3.short
t: Principalement
# CSS for email
- key: options.css_for_email.0
t: Je n'écris (quasiment) jamais du CSS pour des clients mails
- key: options.css_for_email.0.short
t: Jamais
- key: options.css_for_email.1
t: J'écris parfois du CSS pour des clients mails
- key: options.css_for_email.1.short
t: Occasionellement
- key: options.css_for_email.2
t: J'écris du CSS pour des clients mails pour la plupart de mes projets
- key: options.css_for_email.2.short
t: Souvent
- key: options.css_for_email.3
t: Je me concentre principalement sur le CSS pour les clients mails
- key: options.css_for_email.3.short
t: Principalement
###########################################################################
# Features
###########################################################################
# layout
- key: features.grid
t: CSS Grid
- key: features.subgrid
t: Subgrid
- key: features.regions
t: Régions CSS
- key: features.flexbox
t: Flexbox
- key: features.multi_column
t: CSS Multi-Colonnes
- key: features.writing_modes
t: Modes d'écriture de CSS
- key: features.exclusions
t: Exclusions CSS
- key: features.position_sticky
t: "<code>position: sticky</code>"
- key: features.logical_properties
t: Propriétés logiques
- key: features.logical_properties.description
t: <code>margin-block-start</code>, <code>padding-inline-end</code>, etc.
- key: features.aspect_ratio
t: <code>aspect-ratio</code>
- key: features.content_visibility
t: <code>content-visibility</code>
# shapes & graphics
- key: features.shapes
t: Formes CSS
- key: features.object_fit
t: <code>object-fit</code>
- key: features.clip_path
t: <code>clip-path</code>
- key: features.masks
t: Masques CSS
- key: features.blend_modes
t: Blend Modes
- key: features.blend_modes.description
t: La propriété <code>mix-blend-mode</code>
- key: features.filter_effects
t: Les effets filtres CSS
- key: features.backdrop_filter
t: <code>backdrop-filter</code>
# interactions
- key: features.scroll_snap
t: Scroll-Snap CSS
- key: features.overscroll_behavior
t: <code>overscroll-behavior</code>
- key: features.overflow_anchor
t: <code>overflow-anchor</code>
- key: features.touch_action
t: <code>touch-action</code>
- key: features.pointer_events
t: <code>pointer-events</code>
# typography
- key: features.web_fonts
t: Web fonts (@font-face)
- key: features.variables_fonts
t: Variable de police d'écriture
- key: features.line_breaking
t: Propriétés de saut de ligne
- key: features.line_breaking.description
t: <code>overflow-wrap</code>, <code>word-break</code>, <code>line-break</code>, <code>hyphens</code>
- key: features.font_variant
t: <code>font-variant-*</code>
- key: features.initial_letter
t: <code>initial-letter</code>
- key: features.font_variant_numeric
t: <code>font-variant-numeric</code>
- key: features.font_display
t: <code>font-display</code>
- key: features.line_clamp
t: <code>line-clamp</code>
- key: features.leading_trim
t: <code>leading-trim</code>
- key: features.direction
t: <code>direction</code>
- key: features.direction.description
t: Inclut aussi les attributs HTML <code>dir</code>.
# animations & transforms
- key: features.transitions
t: Transitions CSS
- key: features.transforms
t: Transformations CSS
- key: features.animations
t: Animations CSS
- key: features.perspective
t: <code>perspective</code>
# media queries
- key: features.feature_support_queries
t: Requêtes de fonctionnalités (<code>@supports</code>)
- key: features.prefers_reduced_motion
t: <code>prefers-reduced-motion</code>
- key: features.prefers_color_scheme
t: <code>prefers-color-scheme</code>
- key: features.color_gamut
t: <code>color-gamut</code>
# other features
- key: features.variables
t: Variables CSS (Propriétés Custom)
- key: features.containment
t: Compartimentation CSS
- key: features.will_change
t: <code>will-change</code>
- key: features.calc
t: <code>calc()</code>
- key: features.houdini
t: Houdini
- key: features.comparison_functions
t: Fonctions de comparaison CSS
- key: features.comparison_functions.description
t: <code>min()</code>, <code>max()</code>, and <code>clamp()</code>
###########################################################################
# Units & Selectors
###########################################################################
- key: features_others.units
t: Unités
- key: features_others.units.description
t: Lesquels de ces unités avez-vous utilisé ?
- key: options.units.px
t: px
- key: options.units.pt
t: pt
- key: options.units.percent
t: "%"
- key: options.units.em
t: em
- key: options.units.rem
t: rem
- key: options.units.vh_vw
t: vh, vw
- key: options.units.vmin_vmax
t: vmin, vmax
- key: options.units.ch
t: ch
- key: options.units.ex
t: ex
- key: options.units.mm
t: mm
- key: options.units.cm
t: cm
- key: options.units.in
t: in
- key: features_others.pseudo_elements
t: Pseudo Éléments
- key: features_others.pseudo_elements.description
t: Lequel de ces pseudo-éléments CSS avez-vous utilisé ?
- key: options.pseudo_elements.before
t: "::before"
- key: options.pseudo_elements.after
t: "::after"
- key: options.pseudo_elements.first_line
t: "::first-line"
- key: options.pseudo_elements.first_letter
t: "::first-letter"
- key: options.pseudo_elements.selection
t: "::selection"
- key: options.pseudo_elements.placeholder
t: "::placeholder"
- key: options.pseudo_elements.marker
t: "::marker"
- key: options.pseudo_elements.backdrop
t: "::backdrop"
- key: features_others.combinators
t: Combinaisons
- key: features_others.combinators.description
t: Lesquelles de ces combinaisons de sélecteurs CSS avez-vous déjà utilisé?
- key: options.combinators.descendant
t: div span (descendant)
- key: options.combinators.child
t: div > span (enfant)
- key: options.combinators.next_sibling
t: div + div (voisin suivant)
- key: options.combinators.subsequent_sibling
t: div ~ div (voisin subséquent)
- key: features_others.tree_document_structure
t: Hiérarchie / Structure de document
- key: features_others.tree_document_structure.description
t: Lesquels de ces sélecteurs propres à la structure d'un document avez-vous déjà utilisé ?
- key: options.tree_document_structure.root
t: :root
- key: options.tree_document_structure.empty
t: :empty
- key: options.tree_document_structure.not
t: :not()
- key: options.tree_document_structure.nth_child
t: :nth-child()
- key: options.tree_document_structure.nth_last_child
t: :nth-last-child()
- key: options.tree_document_structure.first_child
t: :first-child
- key: options.tree_document_structure.last_child
t: :last-child
- key: options.tree_document_structure.only_child
t: :only-child
- key: options.tree_document_structure.nth_of_type
t: :nth-of-type()
- key: options.tree_document_structure.nth_last_of_type
t: :nth-last-of-type()
- key: options.tree_document_structure.first_of_type
t: :first-of-type
- key: options.tree_document_structure.last_of_type
t: :last-of-type
- key: options.tree_document_structure.only_of_type
t: :only-of-type
- key: options.tree_document_structure.lang
t: :lang()
- key: options.tree_document_structure.is
t: :is()
- key: options.tree_document_structure.where
t: :where()
- key: options.tree_document_structure.has
t: :has()
- key: features_others.attributes
t: Attributs
- key: features_others.attributes.description
t: Lesquels de ces sélecteurs d'attributs CSS avez-vous déjà utilisé ?
- key: options.attributes.presence
t: div[foo] (Présence)
- key: options.attributes.equality
t: div[foo="bar"] (Égalité)
- key: options.attributes.starts_with
t: div[foo^="bar"] (Commence par)
- key: options.attributes.ends_with
t: div[foo$="bar"] (Termine par)
- key: options.attributes.contains_word
t: div[foo~="bar"] (Contient un mot)
- key: options.attributes.contains_substring
t: div[foo*="bar"] (Contient une partie de texte)
- key: features_others.links_urls
t: Links/URLs
- key: features_others.links_urls.description
t: Lesquels de ces sélecteurs propres aux liens & URLs avez-vous déjà utilisé ?
- key: options.links_urls.any_link
t: :any-link
- key: options.links_urls.link_visited
t: :link et :visited
- key: options.links_urls.local_link
t: :local-link
- key: options.links_urls.target
t: :target
- key: features_others.interaction
t: Interaction
- key: features_others.interaction.description
t: Lesquels de ces sélecteurs d'intéraction CSS avez-vous déjà utilisé ?
- key: options.interaction.hover
t: :hover
- key: options.interaction.active
t: :active
- key: options.interaction.focus
t: :focus
- key: options.interaction.focus_within
t: :focus-within
- key: options.interaction.focus_visible
t: :focus-visible
- key: features_others.form_controls
t: Form Controls
- key: features_others.form_controls.description
t: Lesquels de ces sélecteurs CSS propres aux formulaires avez-vous déjà utilisé ?
- key: options.form_controls.enabled_disabled
t: :enabled et :disabled
- key: options.form_controls.read_only_write
t: :read-only et :read-write
- key: options.form_controls.placeholder_shown
t: :placeholder-shown
- key: options.form_controls.default
t: :default
- key: options.form_controls.checked
t: :checked
- key: options.form_controls.indeterminate
t: :indeterminate
- key: options.form_controls.valid_invalid
t: :valid et :invalid
- key: options.form_controls.user_invalid
t: :user-invalid
- key: options.form_controls.in_out_range
t: :in-range et :out-of-range
- key: options.form_controls.required_optional
t: :required et :optional
###########################################################################
# Tools
###########################################################################
- key: tools.atomiccss
t: Utility-First / Atomic CSS
###########################################################################
# Environments
###########################################################################
- key: environments.browsers
t: Navigateurs
- key: environments.browsers.description
t: Sur quels navigateurs testez-vous ?
- key: environments.form_factors
t: Facteurs de forme
- key: environments.form_factors.question
t: Sur quel facteur de forme testez-vous ?
- key: environments.css_for_print
t: CSS pour l'impression
- key: environments.css_for_print.question
t: Écrivez-vous du style d'impression ?
- key: environments.css_for_email
t: CSS pour les clients mails
- key: environments.css_for_email.question
t: Écrivez-vous du CSS pour des clients mails ?
###########################################################################
# Opinions
###########################################################################
- key: opinions.css_easy_to_learn
t: CSS est façile à apprendre
- key: opinions.css_easy_to_learn.title
t: Courbe d'apprentissage
- key: opinions.css_evolving_slowly
t: CSS évolue trop lentement
- key: opinions.css_evolving_slowly.title
t: Vitesse d'évolution
- key: opinions.utility_classes_to_be_avoided
t: Les classes utilitaires (.center, .large-text, etc.) devraient être évitées
- key: opinions.utility_classes_to_be_avoided.title
t: Les classes utilitaires
- key: opinions.selector_nesting_to_be_avoided
t: L'imbrication de sélecteurs (.foo .bar ul li {...}) devrait être évitée
- key: opinions.selector_nesting_to_be_avoided.title
t: Imbrication de sélecteurs
- key: opinions.css_is_programming_language
t: CSS est un langage de programmation
- key: opinions.css_is_programming_language.title
t: Langage de programmation
- key: opinions.enjoy_writing_css
t: J'aime écrire du CSS
- key: opinions.enjoy_writing_css.title
t: Niveau de satisfaction
- key: opinions_others.css_missing_features.others
t: Quelle fonctionnalité est actuellement manquante dans CSS selon vous ?
- key: opinions_others.css_missing_features.others.description
t: Fonctionnalités que vous aimeriez voir dans CSS un jour.
- key: opinions.sum_up_one_word_css
t: CSS en un mot
- key: opinions.sum_up_one_word_css.description
t: Comment résumeriez-vous votre opinion de CSS en un mot ?
- key: happiness.state_of_the_web
t: A quel point êtes-vous heureux de l'état général des technologies web ?
- key: happiness.state_of_css
t: A quel point êtes-vous heureux de l'état général de CSS ?