-
Notifications
You must be signed in to change notification settings - Fork 193
/
css.json
1894 lines (1894 loc) · 159 KB
/
css.json
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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"\"\"": {
"en-US": "\"\" (the empty string)",
"ja": "\"\" (空文字列)",
"zh-CN": "\"\"(空字符串)"
},
"\". \"": {
"en-US": "\". \" (full stop followed by a space)",
"ja": "\". \" (ピリオドの後に空白)",
"zh-CN": "\". \"(句号后跟一个空格)"
},
"absoluteLength": {
"de": "absolute {{cssxref(\"length\")}}",
"en-US": "absolute {{cssxref(\"length\")}}",
"fr": "une longueur (type {{cssxref(\"length\")}}) absolue",
"ja": "絶対的な{{cssxref(\"length\", \"長さ\")}}",
"ru": "абсолютная {{cssxref(\"length\")}}",
"zh-CN": "绝对 {{cssxref(\"length\")}}"
},
"absoluteLength0ForNone": {
"de": "eine absolute Länge; falls das Schlüsselwort <code>none</code> angegeben wurde, ist der berechnete Wert <code>0</code>",
"en-US": "an absolute length; if the keyword <code>none</code> is specified, the computed value is <code>0</code>",
"fr": "une longueur absolue ; si le mot-clé <code>none</code> est spécifié, la valeur calculée sera <code>0</code>",
"ja": "絶対的な長さ、キーワード <code>none</code> が指定されると計算値は <code>0</code> になる",
"ru": "абсолютная длина; если указано ключевое слово <code>none</code>, вычисленное значение - <code>0</code>",
"zh-CN": "绝对长度;如果指定关键词为 <code>none</code>,则计算值为 <code>0</code>"
},
"absoluteLength0IfColumnRuleStyleNoneOrHidden": {
"de": "die absolute Länge; <code>0</code> falls {{cssxref(\"column-rule-style\")}} <code>none</code> oder <code>hidden</code> ist",
"en-US": "the absolute length; <code>0</code> if the {{cssxref(\"column-rule-style\")}} is <code>none</code> or <code>hidden</code>",
"fr": "une longueur absolue ou <code>0</code> si {{cssxref(\"column-rule-style\")}} vaut <code>none</code> ou <code>hidden</code>",
"ja": "絶対的な長さ、列の罫線のスタイルが <code>none</code> か <code>hidden</code> なら <code>0</code>",
"ru": "абсолютная длина; <code>0</code>, если {{cssxref(\"column-rule-style\")}} - <code>none</code> или <code>hidden</code>",
"zh-CN": "绝对长度;如果 {{cssxref(\"column-rule-style\")}} 设为 <code>none</code> 或 <code>hidden</code>,则为 <code>0</code>"
},
"absoluteLengthOr0IfBorderBottomStyleNoneOrHidden": {
"de": "die absolute Länge; <code>0</code> falls {{cssxref(\"border-bottom-style\")}} <code>none</code> oder <code>hidden</code> ist",
"en-US": "the absolute length or <code>0</code> if {{cssxref(\"border-bottom-style\")}} is <code>none</code> or <code>hidden</code>",
"fr": "la longueur absolue ou <code>0</code> si {{cssxref(\"border-bottom-style\")}} vaut <code>none</code> ou <code>hidden</code>",
"ja": "絶対的な長さ、または {{cssxref(\"border-bottom-style\")}} が <code>none</code> または <code>hidden</code> の場合は <code>0</code>",
"ru": "абсолютная длина или <code>0</code>, если {{cssxref(\"border-bottom-style\")}} - <code>none</code> или <code>hidden</code>",
"zh-CN": "绝对长度;或如果 {{cssxref(\"border-bottom-style\")}} 的值是 <code>none</code> 或 <code>hidden</code>,则为 <code>0</code>"
},
"absoluteLengthOr0IfBorderLeftStyleNoneOrHidden": {
"de": "die absolute Länge; <code>0</code> falls {{cssxref(\"border-left-style\")}} <code>none</code> oder <code>hidden</code> ist",
"en-US": "the absolute length or <code>0</code> if {{cssxref(\"border-left-style\")}} is <code>none</code> or <code>hidden</code>",
"fr": "la longueur absolue ou <code>0</code> si {{cssxref(\"border-left-style\")}} vaut <code>none</code> ou <code>hidden</code>",
"ja": "絶対的な長さ、または {{cssxref(\"border-left-style\")}} が <code>none</code> または <code>hidden</code> の場合は <code>0</code>",
"ru": "абсолютная длина или <code>0</code>, если {{cssxref(\"border-left-style\")}} - <code>none</code> или <code>hidden</code>",
"zh-CN": "绝对长度;或如果 {{cssxref(\"border-left-style\")}} 的值为 <code>none</code> 或 <code>hidden</code>,则为 <code>0</code>"
},
"absoluteLengthOr0IfBorderRightStyleNoneOrHidden": {
"de": "die absolute Länge; <code>0</code> falls {{cssxref(\"border-right-style\")}} <code>none</code> oder <code>hidden</code> ist",
"en-US": "the absolute length or <code>0</code> if {{cssxref(\"border-right-style\")}} is <code>none</code> or <code>hidden</code>",
"fr": "la longueur absolue ou <code>0</code> si {{cssxref(\"border-right-style\")}} vaut <code>none</code> ou <code>hidden</code>",
"ja": "絶対的な長さ、または {{cssxref(\"border-right-style\")}} が <code>none</code> または <code>hidden</code> の場合は <code>0</code>",
"ru": "абсолютная длина или <code>0</code>, если {{cssxref(\"border-right-style\")}} - <code>none</code> или <code>hidden</code>",
"zh-CN": "绝对长度;或如果 {{cssxref(\"border-right-style\")}} 的值为 <code>none</code> 或 <code>hidden</code>,则为 <code>0</code>"
},
"absoluteLengthOr0IfBorderTopStyleNoneOrHidden": {
"de": "die absolute Länge; <code>0</code> falls {{cssxref(\"border-top-style\")}} <code>none</code> oder <code>hidden</code> ist",
"en-US": "the absolute length or <code>0</code> if {{cssxref(\"border-top-style\")}} is <code>none</code> or <code>hidden</code>",
"fr": "la longueur absolue ou <code>0</code> si {{cssxref(\"border-top-style\")}} vaut <code>none</code> ou <code>hidden</code>",
"ja": "絶対的な長さ、または {{cssxref(\"border-top-style\")}} が <code>none</code> または <code>hidden</code> の場合は <code>0</code>",
"ru": "абсолютная длина или <code>0</code>, если {{cssxref(\"border-top-style\")}} - <code>none</code> или <code>hidden</code>",
"zh-CN": "绝对长度;或如果 {{cssxref(\"border-top-style\")}} 的值为 <code>none</code> 或 <code>hidden</code>,则为 <code>0</code>"
},
"absoluteLengthOrAsSpecified": {
"de": "für Prozent- und Längenwerte die absolute Länge, ansonsten wie angegeben",
"en-US": "for percentage and length values, the absolute length, otherwise as specified",
"fr": "pour les valeurs en pourcentages ou en longueur, la longueur absolue, sinon, comme spécifié",
"ja": "パーセンテージか length を指定すると絶対的な値、それ以外は指定通り",
"ru": "для процентов и значений длин, абсолютной длины, если другое не указано",
"zh-CN": "对于百分比和长度值,其为绝对长度,否则为指定值"
},
"absoluteLengthOrKeyword": {
"de": "für Prozentwerte und Längenwerte die absolute Länge, ansonsten das Schlüsselwort wie angegeben",
"en-US": "for percentage and length values, the absolute length, otherwise the keyword as specified",
"fr": "pour les valeurs exprimées en pourcentages ou en longueur, la longueur absolue, sinon, le mot-clé comme spécifié",
"ja": "パーセンテージか長さを指定すると絶対的な値、それ以外は指定されたキーワード",
"ru": "для процентов и значений длин, абсолютных длин или ключевых слов, если указаны"
},
"absoluteLengthOrNone": {
"de": "die absolute Länge oder <code>none</code>",
"en-US": "the absolute length or <code>none</code>",
"fr": "la longueur absolue ou le mot-clé <code>none</code>",
"ja": "絶対的な長さまたは <code>none</code>",
"ru": "абсолютная длина или <code>none</code>"
},
"absoluteLengthOrNormal": {
"de": "die absolute Länge oder das Schlüsselwort <code>normal</code>",
"en-US": "the absolute length or the keyword <code>normal</code>",
"fr": "la longueur absolue ou le mot-clé <code>normal</code>",
"ja": "絶対的な長さまたはキーワード <code>normal</code>",
"ru": "абсолютная длина или ключевое слово <code>normal</code>"
},
"absoluteLengthOrPercentage": {
"de": "für {{cssxref(\"length\")}} der absolute Wert, ansonsten ein Prozentwert",
"en-US": "for {{cssxref(\"length\")}} the absolute value, otherwise a percentage",
"fr": "pour {{cssxref(\"length\")}}, la valeur absolue, sinon un pourcentage",
"ja": "{{cssxref(\"length\")}} の場合は絶対的な値、それ以外はパーセント値",
"ru": "для {{cssxref(\"length\")}} абсолютного значения, иначе процент"
},
"absoluteLengthOrPercentageNumbersConverted": {
"en-US": "an absolute {{cssxref(\"length\")}} or {{cssxref(\"percentage\")}}, numbers converted to absolute lengths first"
},
"absoluteLengthsSpecifiedColorAsSpecified": {
"de": "Längen absolut gemacht; angegebene Farben berechnet; ansonsten wie angegeben",
"en-US": "any length made absolute; any specified color computed; otherwise as specified",
"fr": "toute longueur sous forme absolue; toute couleur sous forme calculée; sinon comme spécifié",
"ja": "指定値(length は全て絶対値となり、color については計算値となる)",
"ru": "любая абсолютная длина; работает любой указанный цвет; если другое не указано"
},
"absoluteLengthZeroIfBorderStyleNoneOrHidden": {
"de": "absolute Länge; <code>0</code>, falls der Rahmenstil <code>none</code> oder <code>hidden</code> ist",
"en-US": "absolute length; <code>0</code> if the border style is <code>none</code> or <code>hidden</code>",
"fr": "une longueur absolue ; <code>0</code> si le style de la bordure vaut <code>none</code> ou <code>hidden</code>",
"ja": "絶対的な長さ、境界スタイルが <code>none</code> または <code>hidden</code> であれば <code>0</code>",
"ru": "абсолютная длина; <code>0</code>, если стиль рамки <code>none</code> или <code>hidden</code>"
},
"absoluteLengthZeroOrLarger": {
"de": "the absolute length, zero oder larger",
"en-US": "the absolute length, zero or larger",
"fr": "la valeur absolue valant zéro ou plus",
"ja": "ゼロ以上の絶対的な長さ",
"ru": "абсолютная длина, ноль или больше",
"zh-CN": "绝对长度,零或更大"
},
"absolutelyPositionedElements": {
"de": "absolut positionierte Elemente",
"en-US": "absolutely positioned elements",
"fr": "éléments positionnés de manière absolue",
"ja": "絶対位置指定された要素",
"ru": "абсолютно позиционированные элементы",
"zh-CN": "绝对定位元素"
},
"absoluteURIOrNone": {
"de": "absolute URI oder <code>none</code>",
"en-US": "absolute URI or <code>none</code>",
"fr": "une URI absolue ou <code>none</code>",
"ja": "絶対 URI または <code>none</code>",
"ru": "абсолютный URI или <code>none</code>",
"zh-CN": "绝对 URI 或 <code>none</code>"
},
"all": {
"de": "alle",
"en-US": "all",
"fr": "tous",
"ja": "すべて",
"ru": "всё",
"zh-CN": "所有"
},
"allElements": {
"de": "alle Elemente",
"en-US": "all elements",
"fr": "tous les éléments",
"ja": "すべての要素",
"pl": "wszystkich elementów",
"ru": "все элементы",
"zh-CN": "所有元素"
},
"allElementsAcceptingWidthOrHeight": {
"de": "alle Elemente, die Breite oder Höhe akzeptieren",
"en-US": "all elements that accept width or height",
"fr": "tous les éléments acceptant une largeur ou une hauteur",
"ja": "width および height を受け付ける全ての要素",
"ru": "все элементы, которые могут иметь ширину и высоту"
},
"allElementsAndPseudos": {
"de": "alle Elemente, {{cssxref(\"::before\")}} und {{cssxref(\"::after\")}} <a href=\"/de/docs/Web/CSS/Pseudo-elements\">Pseudoelemente</a>",
"en-US": "all elements, {{cssxref(\"::before\")}} and {{cssxref(\"::after\")}} <a href=\"/en-US/docs/Web/CSS/Pseudo-elements\">pseudo-elements</a>",
"es": "todos los elementos y los <a href=\"/es/docs/Web/CSS/Pseudoelementos\">pseudoelementos</a> {{cssxref(\"::before\")}} y {{cssxref(\"::after\")}}",
"fr": "tous les éléments, ainsi que les <a href=\"/fr/docs/Web/CSS/Pseudo-elements\">pseudo-elements</a> {{cssxref(\"::before\")}} et {{cssxref(\"::after\")}}",
"ja": "すべての要素、{{cssxref(\"::before\")}} / {{cssxref(\"::after\")}} <a href=\"/ja/docs/Web/CSS/Pseudo-elements\">擬似要素</a>",
"ru": "все элементы, {{cssxref(\"::before\")}} и {{cssxref(\"::after\")}} <a href=\"/ru/docs/Web/CSS/Pseudo-elements\">псевдоэлементы</a>"
},
"allElementsAndText": {
"en-US": "all elements and text",
"ja": "すべての要素とテキスト",
"zh-CN": "所有元素和文本"
},
"allElementsButNonReplacedAndTableColumns": {
"de": "alle Elemente außer nicht ersetzte Inlineelemente, Tabellenspalten und Spaltengruppen",
"en-US": "all elements but non-replaced inline elements, table columns, and column groups",
"es": "elementos de bloque o remplazados",
"fr": "tous les éléments sauf les éléments en ligne non remplacés, les colonnes de tableaux et les groupes de colonnes",
"ja": "非置換インライン要素、テーブルの列、列グループを除くすべての要素",
"ru": "все элементы, кроме незаменяемых строчных элементов, табличных колонок и групп колонок",
"zh-CN": "适用于所有元素,但不包括非替换行级元素、表格列和列组"
},
"allElementsButNonReplacedAndTableRows": {
"de": "alle Elemente außer nicht ersetzte Inlineelemente, Tabellenzeilen und Zeilengruppen",
"en-US": "all elements but non-replaced inline elements, table rows, and row groups",
"fr": "tous les éléments sauf les éléments en ligne non remplacés, les lignes de tableaux et les groupes de lignes",
"ja": "置換要素でないインライン要素、テーブルの行、行グループを除くすべての要素",
"ru": "все элементы, кроме незаменяемых строчных элементов, табличных строк и групп строк"
},
"allElementsCreatingNativeWindows": {
"de": "alle Elemente, die native Fenster erstellen, z. B. <window>, <panel>",
"en-US": "all elements that create native windows, e.g. <window>, <panel>",
"fr": "tous les éléments qui créent des fenêtres natives, par exemple <window>, <panel>",
"ja": "ネイティブウィンドウを生成するすべての要素、たとえば <window>, <panel>",
"ru": "все элементы, создающие нативные окна, например, <window>, <panel>"
},
"allElementsExceptGeneratedContentOrPseudoElements": {
"de": "alle Elemente außer generierte Inhalte oder Pseudoelemente",
"en-US": "all elements except generated content or pseudo-elements",
"fr": "tous les éléments sauf le contenu généré ou les pseudo-éléments",
"ja": "生成コンテンツや擬似要素を除くすべての要素",
"ru": "все элементы, кроме сгенерированного контента и псевдоэлементов"
},
"allElementsExceptInlineBoxesAndInternalRubyOrTableBoxes": {
"de": "all elements except inline boxes and internal ruby or table boxes",
"en-US": "all elements except inline boxes and internal ruby or table boxes",
"fr": "all elements except inline boxes and internal ruby or table boxes",
"ja": "インラインボックスおよび内部のルビまたは表ボックスを除くすべての要素",
"ru": "all elements except inline boxes and internal ruby or table boxes"
},
"allElementsExceptInternalTableDisplayTypes": {
"de": "alle Elemente außer <code>table-row-group</code>, <code>table-header-group</code>, <code>table-footer-group</code>, <code>table-row</code>, <code>table-column-group</code> und <code>table-column</code>",
"en-US": "all elements, except <code>table-row-group</code>, <code>table-header-group</code>, <code>table-footer-group</code>, <code>table-row</code>, <code>table-column-group</code> and <code>table-column</code>",
"fr": "tous les éléments exceptés <code>table-row-group</code>, <code>table-header-group</code>, <code>table-footer-group</code>, <code>table-row</code>, <code>table-column-group</code> et <code>table-column</code>",
"ja": "<code>table-row-group</code>, <code>table-header-group</code>, <code>table-footer-group</code>, <code>table-row</code>, <code>table-column-group</code>, <code>table-column</code> を除くすべての要素",
"ru": "все элементы, кроме <code>table-row-group</code>, <code>table-header-group</code>, <code>table-footer-group</code>, <code>table-row</code>, <code>table-column-group</code> и <code>table-column</code>"
},
"allElementsExceptNonReplacedInlineElementsTableRowsColumnsRowColumnGroups": {
"de": "alle Elemente außer: nicht ersetzte Inlineelemente, Tabellenzeilen, Zeilengruppen, Tabellenspalten und Spaltengruppen",
"en-US": "all elements except: non-replaced inline elements, table rows, row groups, table columns, and column groups",
"fr": "tous les éléments sauf : les éléments en ligne non remplacés, les lignes, les groupes de lignes, les colonnes et les groupes de colonnes pour les tableaux",
"ja": "非置換インライン要素、表の行、行グループ、表の列、列グループを除くすべての要素",
"ru": "все элементы, кроме: незаменяемых строчных элементов, строк и колонок таблиц"
},
"allElementsExceptTableDisplayTypes": {
"de": "alle Elemente außer Elemente mit Tabellen-{{cssxref(\"display\")}}-Typen, die nicht <code>table-caption</code>, <code>table</code> und <code>inline-table</code> entsprechen",
"en-US": "all elements, except elements with table {{cssxref(\"display\")}} types other than <code>table-caption</code>, <code>table</code> and <code>inline-table</code>",
"fr": "tous les éléments exceptés ceux dont les types {{cssxref(\"display\")}} pour les tableaux ne sont pas <code>table-caption</code>, <code>table</code> et <code>inline-table</code>",
"ja": "<code>table-caption</code>, <code>table</code>, <code>inline-table</code> 以外の表の {{cssxref(\"display\")}} 種別を除くすべての要素",
"ru": "все элементы, кроме элементов с табличным типом {{cssxref(\"display\")}}, отличным от <code>table-caption</code>, <code>table</code> и <code>inline-table</code>"
},
"allElementsExceptTableElementsWhenCollapse": {
"de": "Alle Elemente, außer interne Tabellenelemente, falls {{cssxref(\"border-collapse\")}} <code>collapse</code> ist",
"en-US": "all elements, except internal table elements when {{cssxref(\"border-collapse\")}} is <code>collapse</code>",
"fr": "tous les éléments sauf les éléments de table internes lorsque {{cssxref(\"border-collapse\")}} vaut <code>collapse</code>",
"ja": "すべての要素。ただし {{cssxref(\"border-collapse\")}} が <code>collapse</code> のときはテーブル要素内部にあるものを除く",
"ru": "все элементы, кроме внутренних табличных элементов, когда {{cssxref(\"border-collapse\")}}:<code>collapse</code>"
},
"allElementsExceptTableRowColumnGroupsTableRowsColumns": {
"de": "alle Elemente außer Tabellenzeilengruppen, Tabellenspaltengruppen, Tabellenzeilen und Tabellenspalten",
"en-US": "all elements except table row groups, table column groups, table rows, and table columns",
"fr": "tous les éléments exceptés les groupes de lignes, les groupes de colonnes des tableaux et les colonnes de tableaux",
"ja": "表の行グループ、表の列グループ、表の行、表の列を除くすべての要素",
"ru": "все элементы, кроме групп табличных строк, групп табличных столбцов, табличных строк и табличных колонок"
},
"allElementsExceptTableRowGroupsRowsColumnGroupsAndColumns": {
"de": "alle Elemente außer Tabellenzeilengruppen, Zeilen, Spaltengruppen und Spalten",
"en-US": "all elements, except table row groups, rows, column groups, and columns",
"fr": "tous les éléments exceptés les groupes de lignes, les lignes, les groupes de colonnes et les colonnes de tableaux",
"ja": "表の行グループ、列グループ、行、列を除くすべての要素",
"ru": "все элементы, кроме групп табличных строк, столбцов, групп столбцов и столбцов"
},
"allElementsNoEffectIfDisplayNone": {
"de": "alle Elemente, hat jedoch keinen Effekt, falls der Wert von {{cssxref(\"display\")}} <code>none</code> ist",
"en-US": "all elements, but has no effect if the value of {{cssxref(\"display\")}} is <code>none</code>.",
"fr": "tous les éléments mais n'a aucun effet si la valeur de <code>display</code> est <code>none</code>.",
"ja": "すべての要素。ただし {{cssxref(\"display\")}} が <code>none</code> なら効果を持ちません。",
"ru": "все элементы, но не будет эффекта, если <code>display: none</code>"
},
"allElementsSomeValuesNoEffectOnNonInlineElements": {
"de": "Alle Elemente, einige Werte haben keine Wirkung bei non-inline Elementen",
"en-US": "all elements, though some values have no effect on non-inline elements",
"fr": "tous les éléments bien que certaines valeurs n'aient pas d'effet sur les éléments qui ne sont pas en ligne",
"ja": "すべての要素。ただし一部の値はインラインでない要素には効果がありません",
"ru": "все элементы, хотя некоторые значения не работают на не строчных элементах"
},
"allElementsSVGContainerElements": {
"de": "alle Elemente; In SVG gilt betrifft dies Containerelemente mit Ausnahme des {{SVGElement(\"defs\")}} Elements und allen Grafikelementen",
"en-US": "all elements; In SVG, it applies to container elements excluding the {{SVGElement(\"defs\")}} element and all graphics elements",
"fr": "tous les éléments ; en SVG, cela s'applique aux éléments conteneurs à l'exception des éléments {{SVGElement(\"defs\")}} et des éléments graphiques",
"ja": "すべての要素。 SVG の場合は {{SVGElement(\"defs\")}} 要素やすべてのグラフィック要素を除いたコンテナー要素に適用される",
"ru": "все элементы; в SVG, это применяется к контейнерам, исключая элемент {{SVGElement(\"defs\")}} и все графические элементы"
},
"allElementsSVGContainerGraphicsAndGraphicsReferencingElements": {
"de": "Alle Elemente. In SVG wird er auf Containerelemente, Grafikelemente und Grafiken referenzierende Elemente angewandt.",
"en-US": "All elements. In SVG, it applies to container elements, graphics elements, and graphics referencing elements.",
"fr": "Tous les éléments. En SVG, cela s'applique aux éléments de conteneurs, aux éléments graphiques et aux éléments faisant référence à des éléments graphiques.",
"ja": "すべての要素。 SVG では、コンテナー要素、グラフィック要素、グラフィック参照要素に適用されます。",
"ru": "Все элементы. В SVG это применяется к контейнерам, графическим элементам и элементам графической отсылки."
},
"allElementsThatCanReferenceImages": {
"en-US": "Any element that can have an image applied to it, for example as a {{cssxref(\"background-image\")}}, {{cssxref(\"border-image\")}}, or {{cssxref(\"list-style-image\")}}.",
"ja": "{{cssxref(\"background-image\")}}, {{cssxref(\"border-image\")}}, {{cssxref(\"list-style-image\")}} などで適用される画像を持つすべての要素。"
},
"allElementsThatGenerateAPrincipalBox": {
"en-US": "All elements that generate a <a href=\"https://drafts.csswg.org/css-display-4/#principal-box\">principal box</a>"
},
"allElementsTreeAbidingPseudoElementsPageMarginBoxes": {
"ja": "すべての要素、ツリーに現れる擬似要素、ページのマージンボックス",
"en-US": "All elements, tree-abiding pseudo-elements, and page margin boxes"
},
"allElementsUAsNotRequiredWhenCollapse": {
"de": "alle Elemente; aber User Agents sind nicht gezwungen dies auf <code>table</code> und <code>inline-table</code> Elemente anzuwenden, falls {{cssxref(\"border-collapse\")}} <code>collapse</code> ist. Das Verhalten bei internen Tabellenelementen ist momentan undefiniert.",
"en-US": "all elements; but User Agents are not required to apply to <code>table</code> and <code>inline-table</code> elements when {{cssxref(\"border-collapse\")}} is <code>collapse</code>. The behavior on internal table elements is undefined for the moment.",
"fr": "tous les éléments, mais les agents utilisateurs ne sont pas tenus de l'appliquer aux éléments de type <code>table</code> ou <code>inline-table</code> lorsque {{cssxref(\"border-collapse\")}} vaut <code>collapse</code>. Le comportement sur les éléments de type table interne est pour l'instant indéfini.",
"ja": "すべての要素。ただし、ユーザーエージェントは {{cssxref(\"border-collapse\")}} が <code>collapse</code> である場合に<code>table</code> および <code>inline-table</code> 要素に適用する必要はない。内部表要素での動作は、今のところ未定義。",
"ru": "все элементы, но браузеры не применяют к элементам <code>table</code> и <code>inline-table</code>, когда {{cssxref(\"border-collapse\")}}:<code>collapse</code>. Поведение на внутритабличных элементах не определено."
},
"allHTMLElements": {
"de": "alle HTML-Elemente",
"en-US": "all HTML elements",
"fr": "tous les éléments HTML",
"ja": "すべての HTML 要素",
"ru": "все HTML элементы"
},
"andInEnumeration": {
"de": " und ",
"en-US": " and ",
"fr": " et ",
"ja": "および",
"ru": " и "
},
"angle": {
"de": "Winkel",
"en-US": "angle",
"fr": "angle",
"ja": "角度",
"ru": "угол"
},
"angleBasicShapeOrPath": {
"de": "{{cssxref(\"<angle>\"}}, {{cssxref(\"<basic-shape>\"}} oder {{cssxref(\"<path()>\"}}",
"en-US": "{{cssxref(\"<angle>\"}}, {{cssxref(\"<basic-shape>\"}} or {{cssxref(\"<path()>\"}}",
"fr": "{{cssxref(\"<angle>\"}}, {{cssxref(\"<basic-shape>\"}} ou {{cssxref(\"<path()>\"}}",
"ja": "{{cssxref(\"<angle>\"}}, {{cssxref(\"<basic-shape>\"}}, {{cssxref(\"<path()>\"}} のいずれか"
},
"angleOrBasicShapeOrPath": {
"de": "als <angle>, <basic-shape> oder <path()>",
"en-US": "as <angle>, <basic-shape> or <path()>",
"fr": "comme <angle>, <basic-shape> ou <path()>",
"ja": "<angle>, <basic-shape>, <path()> の何れかとして",
"ru": "как <angle>, <basic-shape> или <path()>"
},
"angleRoundedToNextQuarter": {
"de": "ein {{cssxref(\"angle\")}}, auf den nächsten Viertel von <code>0deg</code> gerundet (üblicherweise <code>1turn)</code>",
"en-US": "an {{cssxref(\"angle\")}}, rounded to the next quarter turn from <code>0deg</code> and normalized, that is moduloing the value by <code>1turn</code>",
"fr": "un {{cssxref(\"angle\")}}, arrondi au quart de tour supérieur (à partir de <code>0deg</code>) puis normalisé (modulo) pour obtenir l'angle relatif à un tour",
"ja": "<code>0deg</code> から次の 4 分の 1 回転に丸めて正規化した {{cssxref(\"angle\")}} を <code>1turn</code> で割った余り",
"ru": "{{cssxref(\"angle\")}}, с округлением до следующей четверти оборота от <code>0deg</code> и нормализованный так, что значение - <code>1 поворот</code>"
},
"animationType": {
"de": "Animationstyp",
"en-US": "Animation type",
"fr": "Type d'animation",
"ja": "アニメーションの種類",
"zh-CN": "动画类型"
},
"anyElementEffectOnProgressAndMeter": {
"de": "beliebige Elemente; es hat eine Auswirkung auf {{HTMLElement(\"progress\")}} und {{HTMLElement(\"meter\")}}, aber nicht auf <input type=\"range\"> oder andere Elemente",
"en-US": "any element; it has an effect on {{HTMLElement(\"progress\")}} and {{HTMLElement(\"meter\")}}, but not on <input type=\"range\"> or other elements",
"fr": "n'importe quel élément, aura un effet sur {{HTMLElement(\"progress\")}} et {{HTMLElement(\"meter\")}}, mais pas sur <input type=\"range\"> ou les autres éléments",
"ja": "任意の要素。これは {{HTMLElement(\"progress\")}} および {{HTMLElement(\"meter\")}} には効果がありますが、 <input type=\"range\"> やその他の要素には効果がありません",
"ru": "любой элемент; имеет эффект на {{HTMLElement(\"progress\")}} и {{HTMLElement(\"meter\")}}, но не на <input type=\"range\"> или других элементах"
},
"appliesTo": {
"de": "Anwendbar auf",
"en-US": "Applies to",
"fr": "Applicabilité",
"ja": "適用対象",
"ko": "적용대상",
"pl": "Stosowana do",
"pt-BR": "Aplica-se a",
"ru": "Применяется к",
"zh-CN": "适用元素"
},
"applyingToMultiple": {
"de": "$1$. Auch anwendbar auf $2$.",
"en-US": "$1$. It also applies to $2$.",
"fr": "$1$. S'applique aussi à $2$.",
"ja": "$1$。 $2$ にも適用されます。",
"ru": "$1$. Это также применяется к $2$."
},
"asAutoOrColor": {
"en-US": "<code>auto</code> is computed as specified and <code><color></code> values are computed as defined for the {{cssxref(\"color\")}} property.",
"de": "<code>auto</code> wird wie angegeben berechnet und <code><color></code> Werte werden wie für die {{cssxref(\"color\")}} Eigenschaft berechnet.",
"ja": "<code>auto</code> は仕様通りに計算され、 <code><color></code> 値は {{cssxref(\"color\")}} プロパティで定義されたように計算される。"
},
"asColorOrAbsoluteURL": {
"en-US": "as specified, but with <code><color></code> values computed and <code><url></code> values made absolute"
},
"asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified": {
"de": "wie definiert für {{cssxref(\"basic-shape\")}} (gefolgt von {{cssxref(\"shape-box\")}}, falls angegeben), dem {{cssxref(\"image\")}}, dessen URI absolut gemacht wurde, ansonsten wie angegeben.",
"en-US": "as defined for {{cssxref(\"basic-shape\")}} (with {{cssxref(\"shape-box\")}} following, if supplied), the {{cssxref(\"image\")}} with its URI made absolute, otherwise as specified.",
"fr": "comme défini pour {{cssxref(\"basic-shape\")}} (avec {{cssxref(\"shape-box\")}} qui suit s'il est utilisé), l'{{cssxref(\"image\")}} avec son URI rendue absolue, sinon, comme spécifié.",
"ja": "{{cssxref(\"basic-shape\")}} で定義された通り (与えられている場合は {{cssxref(\"shape-box\")}} が続く)、 URI を絶対化した {{cssxref(\"image\")}}、それ以外は指定通り。",
"ru": "как определено для {{cssxref(\"basic-shape\")}} (c {{cssxref(\"shape-box\")}} последующим, если передается), {{cssxref(\"image\")}} с его абсолютным URI, если другое не указано"
},
"asLength": {
"de": "als {{cssxref(\"length\")}}",
"en-US": "as {{cssxref(\"length\")}}",
"fr": "comme {{cssxref(\"length\")}}",
"ja": "{{cssxref(\"length\")}} 通り",
"ru": "как {{cssxref(\"length\")}}",
"zh-CN": "为 {{cssxref(\"length\")}} 值"
},
"asLonghands": {
"de": "wie die jeweiligen Kurzschreibweisen:",
"en-US": "as each of the properties of the shorthand:",
"fr": "pour chaque propriété individuelle de la propriété raccourcie :",
"ja": "一括指定の次の各プロパティとして",
"ru": "как и у каждого из подсвойств этого свойства:",
"zh-CN": "该简写所对应的每个属性:"
},
"asSpecified": {
"de": "wie angegeben",
"en-US": "as specified",
"es": "como se especifica",
"ca": "com s'especifica",
"fr": "comme spécifié",
"ja": "指定通り",
"pl": "jako określone",
"ru": "как указано"
},
"asSpecifiedAppliesToEachProperty": {
"de": "wie der angegebene Wert wird er auf alle Eigenschaften angewandt, für die dies eine Kurzschreibweise ist.",
"en-US": "as the specified value applies to each property this is a shorthand for.",
"fr": "comme la valeur spécifiée s'applique sur chaque propriété englobée par le raccourci",
"ja": "この一括指定が対象とする各プロパティに適用する指定された値のまま。",
"ru": "как указанное значение, применяется к каждому свойству этой короткой записи."
},
"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent": {
"en-US": "as specified, except with <code>visible</code>/<code>clip</code> computing to <code>auto</code>/<code>hidden</code> respectively if one of {{cssxref(\"overflow-x\")}} or {{cssxref(\"overflow-y\")}} is neither <code>visible</code> nor </code>clip</code>",
"es": "como se especifica, excepto que si {{cssxref(\"overflow-x\")}} o bien {{cssxref(\"overflow-y\")}} es distinto de <code>visible</code> o <code>clip</code>, estos dos valores computan a <code>auto</code> o <code>hidden</code> respectivamente",
"ca": "com s'especifica, excepte que si {{cssxref(\"overflow-x\")}} o bé {{cssxref(\"overflow-y\")}} són diferents de <code>visible</code> o <code>clip</code>, aquests dos valors computen a <code>auto</code> o <code>hidden</code> respectivament",
"ja": "指定通り、ただし {{cssxref(\"overflow-x\")}} と {{cssxref(\"overflow-y\")}} のどちらかが <code>visible</code> でも </code>clip</code> でもない場合は、 <code>visible</code>/<code>clip</code> はそれぞれ <code>auto</code>/<code>hidden</code> と計算される"
},
"asSpecifiedExceptMatchParent": {
"de": "wie angegeben, außer für den <code>match-parent</code> Wert, welcher in Bezug auf den <code>direction</code> Wert des Elternelements berechnet wird und einen berechneten Wert von <code>left</code> oder <code>right</code> ergibt",
"en-US": "as specified, except for the <code>match-parent</code> value which is calculated against its parent's <code>direction</code> value and results in a computed value of either <code>left</code> or <code>right</code>",
"fr": "comme spécifié, sauf pour la valeur <code>match-parent</code> qui est calculée en fonction de la <code>direction</code> du parent et qui vaut soit <code>left</code>, soit <code>right</code>",
"ja": "指定値。ただし <code>match-parent</code> 値を除く。この値は親要素の <code>direction</code> の値に基いて計算され、計算値が <code>left</code> または <code>right</code> のどちらかになる",
"ru": "как указано, кроме значения <code>match-parent</code>, которое вычисляется вместо значения его родителя <code>direction</code>, а результаты в вычисленном значении <code>left</code> или <code>right</code>"
},
"asSpecifiedExceptPositionedFloatingAndRootElementsKeywordMaybeDifferent": {
"de": "wie der angegebene Wert, außer für positionierte und umfließende Elemente und das Wurzelelement. In beiden Fällen kann der berechnete Wert ein Schlüsselwort sein, das nicht dem angegebenen entspricht.",
"en-US": "as the specified value, except for positioned and floating elements and the root element. In both cases the computed value may be a keyword other than the one specified.",
"fr": "comme la valeur spécifiée, excepté pour les éléments positionnés et flottants, ainsi que pour l'élément racine. Dans les deux cas, la valeur calculée peut être un mot clé différent de celui spécifié.",
"ja": "指定通り。ただし位置指定された要素とフロート、ルート要素を除く。これらは計算値が指定したものと違うキーワードになる可能性があります",
"ru": "как указанное значение, кроме как для позиционированных и плавающих элементов и корневого элемента. В обоих случаях вычисляемое значение может быть ключевым словом, отличным от указанного.",
"zh-CN": "为指定的值,但定位元素、浮动元素和根元素除外。在这两种情况下,计算值可能是不同于指定值的其他关键字。"
},
"asSpecifiedRelativeToAbsoluteLengths": {
"de": "relativ zur gleichen Achse der Innenabstandsbox des Scrollcontainers",
"en-US": "as specified, but with relative lengths converted into absolute lengths",
"fr": "comme spécifié, mais avec les longueurs relatives converties en longueurs absolues",
"ja": "指定通り。ただし相対的な長さはは絶対的な長さに変換される",
"ru": "как указано, но с относительной длиной, конвертируемой в абсолютные длины"
},
"asSpecifiedURLsAbsolute": {
"de": "wie angegeben, aber mit absoluten {{cssxref(\"url\")}} Werten",
"en-US": "as specified, but with {{cssxref(\"url\")}} values made absolute",
"fr": "comme spécifié mais avec les valeurs {{cssxref(\"url\")}} rendues absolues",
"ja": "指定通り、ただし {{cssxref(\"url\")}} の値は絶対パスになる",
"ru": "как указано, но с абсолютными значениями {{cssxref(\"url\")}}"
},
"asSpecifiedWithExceptionOfResolution": {
"de": "wie angegeben mit Ausnahme von <resolution>, das möglicherweise durch den berechneten Wert für 'snap' geändert wird",
"en-US": "as specified, except with <resolution> possibly altered by computed for 'snap' value",
"fr": "telle que spécifiée, sauf avec <resolution> éventuellement modifiée lors du calcul par la valeur 'snap'",
"ja": "指定通り、ただし <resolution> は 'snap' の値に変更されることがある",
"ru": "как указано, за исключением <resolution> может изменить значением 'snap'"
},
"asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn": {
"en-US": "as specified, with <length>s made absolute, and normal computing to zero except on multi-column elements",
"ja": "指定通りで、 <length> は絶対長になり、 normal の計算値は段組み要素を除き 0 になる"
},
"asSpecifiedWithLengthValuesComputed": {
"en-US": "as specified, with <length>s values computed"
},
"asSpecifiedWithVarsSubstituted": {
"de": "wie angegeben, wobei Variablen ersetzt werden",
"en-US": "as specified with variables substituted",
"fr": "tel que spécifié avec les variables échangées",
"ja": "変数を代入して指定した通り"
},
"autoForSmartphoneBrowsersSupportingInflation": {
"de": "<code>auto</code> für Smartphone Browser, die Befüllung unterstützen, <code>none</code> andererseits (und dann unveränderbar).",
"en-US": "<code>auto</code> for smartphone browsers supporting inflation, <code>none</code> in other cases (and then not modifiable).",
"fr": "<code>auto</code> pour les navigateurs de smartphones qui supportent l'expansion, <code>none</code> in dans les autres cas (non modifiable alors).",
"ja": "文字拡大に対応しているスマートフォンブラウザーならば <code>auto</code>、それ以外の場合は <code>none</code> (そして変更不可)。",
"ru": "<code>auto</code> для браузеров в смартфонах поддерживается увеличение, <code>none</code> в других случаях (и позже не изменяется)."
},
"autoForTranslucentColorRGBAOtherwiseRGB": {
"de": "Für das Schlüsselwort <code>auto</code> ist der berechnete Wert <code>currentcolor</code>. Für den Farbwert, falls der Wert durchscheinend ist, ist der berechnete Wert der entsprechende <code>rgba()</code> Wert. Falls nicht, ist er der entsprechende <code>rgb()</code> Wert. Das Schlüsselwort <code>transparent</code> wird zu <code>rgba(0,0,0,0)</code>.",
"en-US": "For the keyword <code>auto</code>, the computed value is <code>currentcolor</code>. For the color value, if the value is translucent, the computed value will be the <code>rgba()</code> corresponding one. If it isn't, it will be the <code>rgb()</code> corresponding one. The <code>transparent</code> keyword maps to <code>rgba(0,0,0,0)</code>.",
"fr": "Pour le mot-clé <code>auto</code>, la valeur calculée est <code>currentcolor</code>. Pour la valeur de la couleur, si la valeur est transparente, la valeur calculée sera la valeur <code>rgba()</code> correspondante. S'il n'y en a pas, ce sera la valeur <code>rgb()</code> correspondante. Le mot-clé <code>transparent</code> correspondra à <code>rgba(0,0,0,0)</code>.",
"ja": "キーワード <code>auto</code> の場合は、計算値も <code>currentcolor</code>。色の場合は、半透明であれば、計算値はそれに一致する <code>rbga()</code> で、不透明であれば、それに一致する <code>rgb()</code>。キーワード <code>transparent</code> は <code>rgba(0,0,0,0)</code> に対応付けられる。",
"ru": "Для ключевого слова <code>auto</code>, значение - <code>currentcolor</code>. Для значения цвета, если значение имеет прозрачность, соответственно, значение будет через <code>rgba()</code>. Если это не так, это будет <code>rgb()</code>. Ключевое слово <code>transparent</code> отображается, как <code>rgba(0,0,0,0)</code>."
},
"autoNonNegativeOrPercentage": {
"de": "<code>auto</code>, eine nicht negative Zahl oder ein Prozentwert wie angegeben",
"en-US": "<code>auto</code>, or a non-negative number or percentage as specified",
"fr": "<code>auto</code> ou un nombre positif ou nul ou un pourcentage, comme spécifié",
"ja": "<code>auto</code>、負ではない数、パーセント値の何れかで指定通り",
"ru": "<code>auto</code>, или задаётся неотрицательное число или процент, как указан"
},
"autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent": {
"de": "<code>auto</code> berechnet sich zu sich selbst bei absolut positionierten Elementen und zum berechneten Wert von {{cssxref(\"align-items\")}} des Elternelements (abzüglich veralteter Schlüsselwörter) bei allen anderen Boxen oder <code>start</code>, falls die Box kein Elternelement hat. Sein Verhalten hängt vom Layoutmodell ab, wie für {{cssxref(\"justify-self\")}} beschrieben. Ansonsten der angegebene Wert.",
"en-US": "<code>auto</code> computes to itself on absolutely-positioned elements, and to the computed value of {{cssxref(\"align-items\")}} on the parent (minus any legacy keywords) on all other boxes, or <code>start</code> if the box has no parent. Its behavior depends on the layout model, as described for {{cssxref(\"justify-self\")}}. Otherwise the specified value.",
"fr": "<code>auto</code> sera calculé comme <code>auto</code> pour les éléments positionnés de façon absolue, sera calculé comme {{cssxref(\"align-items\")}} sur le parent (excepté les mots-clés historiques utilisés) de toutes les autres boîtes ou comme <code>start</code> si la boîte n'a pas de parent. Son comportement dépend du modèle de disposition, décrit dans {{cssxref(\"justify-self\")}}, sinon ce sera la valeur spécifiée.",
"ja": "絶対位置指定要素に対しては <code>auto</code> は自分自身に対して計算し、それ以外のすべてのボックスに対しては親の {{cssxref(\"align-items\")}} の計算値 (から古いキーワードを引いた値) に計算し、親が無ければ <code>start</code> になる。この動作は {{cssxref(\"justify-self\")}} で説明したとおり、レイアウトモデルの依存する。それ以外の場合は指定された値となる。",
"ru": "при <code>auto</code> абсолютно позиционированные элементы вычисляют сами и вычисленное значение {{cssxref(\"align-items\")}} для родителя (кроме ключевых слов) на остальных блоках, или <code>start</code>, если у блока нет родителя. Его поведение зависит от модели макета, описываемой {{cssxref(\"justify-self\")}}. Иначе указанное значение."
},
"autoOrRectangle": {
"de": "<code>auto</code>, falls als <code>auto</code> angegeben, ansonsten ein Rechteck mit vier Werten, von denen jeder <code>auto</code> ist, falls als <code>auto</code> angegeben, ansonsten die berechnete Länge",
"en-US": "<code>auto</code> if specified as <code>auto</code>, otherwise a rectangle with four values, each of which is <code>auto</code> if specified as <code>auto</code> or the computed length otherwise",
"fr": "<code>auto</code> si spécifié comme <code>auto</code>, sinon un rectangle avec quatre valeurs dont chacune vaut <code>auto</code> si elles sont spécifiées comme <code>auto</code> sinon, la longueur calculée",
"ja": "<code>auto</code> が指定されていれば <code>auto</code>、それ以外は 4 つの値をともなう矩形。矩形の場合、各値は <code>auto</code> が指定されていれば <code>auto</code>、それ以外では長さの計算値",
"ru": "<code>auto</code>, если указано как <code>auto</code>, иначе прямоугольник с четырьмя значениями, каждое из которых <code>auto</code>, если указаны как <code>auto</code> или вычисленная длина в противном случае"
},
"basicShape": {
"de": "eine <a href=\"/de/docs/Web/CSS/shape-outside#interpolation\" title=\"Werte des <basic-shape> CSS Datentyps interpolieren als einfache Liste. Die Listenwerte interpolieren als Länge, Prozentwert oder calc, wo möglich. Falls Listenwerte nicht einem dieser Typen entsprechen, aber identisch sind, werden diese Werte interpoliert.\">einfache Form</a>",
"en-US": "a <a href=\"/en-US/docs/Web/CSS/shape-outside#interpolation\" title=\"Values of the <basic-shape> CSS data type interpolate as a simple list. The list values interpolate as length, percentage, or calc where possible. If list values are not one of those types but are identical, those values do interpolate.\">basic shape</a>",
"fr": "une <a href=\"/fr/docs/Web/CSS/shape-outside#interpolation\" title=\"Les valeurs de type CSS <forme-basique> sont interpolées comme une liste simple. La liste de valeurs interpole la longueur, le pourcentage ou la valeur calculée. Si les valeurs de la liste ne sont pas de ces types mais sont identiques, les valeurs seront interpolées.\">forme basique (<code>basic-shape</code>)</a>",
"ja": "<a href=\"/ja/docs/Web/CSS/shape-outside#interpolation\" title=\"CSS データ型 <basic-shape> の値は単純なリストとして補間されます。リストの値は、可能であれば長さ、パーセント値、または calc() として補間されます。リストの値がこれらの型のいずれかではなく、同じ値である場合、それらの値は補間されます。\">基本シェイプ</a>",
"ru": "<a href=\"/ru/docs/Web/CSS/shape-outside#interpolation\" title=\"Значения типа <базовая фигура> интерполируются как простой список. Список значений интерполируется как длина, проценты, или расчёт, где возможен. Если список значений не одинакового типа, эти значения интерполируются.\">базовая фигура</a>"
},
"basicShapeOtherwiseNo": {
"de": "ja, wie angegeben für {{cssxref(\"basic-shape\")}}, ansonsten nein",
"en-US": "yes, as specified for {{cssxref(\"basic-shape\")}}, otherwise no",
"fr": "oui, comme spécifié pour {{cssxref(\"basic-shape\")}}, sinon, non",
"ja": "{{cssxref(\"basic-shape\")}} で指定された場合はあり、それ以外の場合はなし",
"ru": "да, как указано для {{cssxref(\"basic-shape\")}}, иначе нет"
},
"beforeAndAfterPseudos": {
"de": "{{cssxref(\"::before\")}} und{{cssxref(\"::after\")}} <a href=\"/de/docs/Web/CSS/Pseudo-elements\">Pseudoelemente</a>",
"en-US": "{{cssxref(\"::before\")}} and {{cssxref(\"::after\")}} <a href=\"/en-US/docs/Web/CSS/Pseudo-elements\">pseudo-elements</a>",
"es": "los <a href=\"/es/docs/Web/CSS/Pseudoelementos\">pseudoelementos</a> {{cssxref(\"::before\")}} y {{cssxref(\"::after\")}}",
"fr": "<a href=\"/fr/docs/Web/CSS/Pseudo-éléments\">pseudo-éléments</a> {{cssxref(\"::before\")}} et {{cssxref(\"::after\")}} ",
"ja": "{{cssxref(\"::before\")}} / {{cssxref(\"::after\")}} <a href=\"/ja/docs/Web/CSS/Pseudo-elements\">擬似要素</a>",
"ru": "{{cssxref(\"::before\")}} и {{cssxref(\"::after\")}} <a href=\"/ru/docs/Web/CSS/Pseudo-elements\">псевдоэлементы</a>"
},
"blockContainerElements": {
"de": "Blockcontainerelemente",
"en-US": "block container elements",
"fr": "les éléments conteneurs de blocs",
"ja": "ブロックコンテナー要素",
"ru": "блочные контейнеры",
"zh-CN": "区块容器元素"
},
"blockContainers": {
"de": "Blockcontainer",
"en-US": "block containers",
"fr": "conteneurs de type bloc",
"ja": "ブロックコンテナー",
"ru": "блочные контейнеры",
"zh-CN": "区块容器"
},
"blockContainersAndInlineBoxes": {
"en-US": "Block containers and inline boxes"
},
"blockContainersAndMultiColumnContainers": {
"de": "Blockcontainer und mehrspaltige Container",
"en-US": "Block containers and multi-column containers",
"ja": "ブロックコンテナーと段組みコンテナー"
},
"blockContainersExceptMultiColumnContainers": {
"de": "Blockcontainer außer mehrspaltige Container",
"en-US": "Block containers except multi-column containers",
"ja": "段組みコンテナーを除くブロックコンテナー"
},
"blockContainersExceptTableWrappers": {
"de": "Blockcontainer außer Tabellen umgebende Boxen",
"en-US": "Block containers except table wrapper boxes",
"ja": "表ラッパーボックスを除くブロックコンテナー"
},
"blockContainersFlexContainersGridContainers": {
"en-US": "Block-containers, flex containers, and grid containers",
"ja": "ブロックコンテナー, フレックスコンテナー, グリッドコンテナー"
},
"blockContainersFlexContainersGridContainersInlineBoxesTableRowsSVGTextContentElements": {
"en-US": "Block-containers, flex containers, grid containers, inline boxes, table rows, and SVG text content elements"
},
"blockContainersMultiColumnContainersFlexContainersGridContainers": {
"en-US": "Block-containers, multi-column containers, flex containers"
},
"blockElementsInNormalFlow": {
"de": "Blocklevelelemente in normalem Fluss des Wurzelelements. User Agents können es auch auf andere Elemente wie <code>table-row</code>-Elemente anwenden.",
"en-US": "block-level elements in the normal flow of the root element. User agents may also apply it to other elements like <code>table-row</code> elements.",
"fr": "les éléments de bloc dans le flux normal de l'élément racine. Les agents utilisateurs peuvent également l'appliquer sur d'autres éléments comme <code>table-row</code>.",
"ja": "ルート要素の通常フロー内におけるブロックレベル要素。ユーザーエージェントは他の要素に <code>table-row</code> 要素のように適用することがあります。",
"ru": "блочные элементы в нормальном потоке родительского элемента. Браузеры могут также применять это к другим элементам типа <code>table-row</code>."
},
"blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems": {
"en-US": "block-level boxes, absolutely-positioned boxes, and grid items"
},
"blockLevelElements": {
"de": "Blocklevel Elemente",
"en-US": "block-level elements",
"fr": "éléments de type bloc",
"ja": "ブロックレベル要素",
"ru": "блочные элементы"
},
"blockSizeOfContainingBlock": {
"de": "Blockgröße des beinhaltenden Blocks",
"en-US": "block-size of containing block",
"fr": "la taille de bloc du bloc englobant",
"ja": "包含ブロックの block-size",
"ru": "размер блока, содержащего элемент"
},
"boxElements": {
"de": "Boxelemente",
"en-US": "box elements",
"fr": "éléments de boîte",
"ja": "ボックス要素",
"ru": "блочные элементы",
"zh-CN": "盒元素"
},
"byComputedValue": {
"en-US": "by computed value"
},
"byComputedValueType": {
"en-US": "by computed value type",
"ja": "計算値の型による",
"zh-CN": "按计算值的类型"
},
"byComputedValueTypeNormalAnimatesAsObliqueZeroDeg": {
"en-US": "by computed value type; <code>normal</code> animates as <code>oblique 0deg</code>"
},
"canonicalOrder": {
"de": "Kanonische Reihenfolge",
"en-US": "Canonical order",
"fr": "Ordre canonique",
"ja": "正規順序",
"ru": "Канонический порядок",
"zh-CN": "规范顺序"
},
"childrenOfBoxElements": {
"de": "Kindelemente von Boxelementen",
"en-US": "children of box elements",
"fr": "les éléments fils des éléments de boîte",
"ja": "ボックス要素の子",
"ru": "потомки блочных элементов"
},
"color": {
"de": "<a href=\"/de/docs/Web/CSS/color_value#interpolation\">Farbe</a>",
"en-US": "a <a href=\"/en-US/docs/Web/CSS/color_value#interpolation\" title=\"Values of the <color> CSS data type are interpolated on each of their red, green, blue components, each handled as a real, floating-point number. Note that interpolation of colors happens in the alpha-premultiplied sRGBA color space to prevent unexpected grey colors to appear.\">color</a>",
"fr": "une <a href=\"/fr/docs/Web/CSS/color_value#interpolation\" title=\"Les valeurs de type <couleur> sont interpolées sur chacune des composantes rouge, bleue et verte, considérées chacunes comme un nombre réel à virgule flottante. Notez que l'interpolation des couleurs a lieu dans l'espace couleur sRGBA pré-multiplié pour éviter l'apparition de teintes grises non désirées.\">couleur</a>",
"ja": "<a href=\"/ja/docs/Web/CSS/color_value#interpolation\" title=\"CSS の <color> データ型の値は、赤、緑、青のそれぞれの値ごとに、浮動小数点の実数として扱われて補間されます。なお、アルファ事前混合 sRGBA 色空間で色の補間を行うと、予期せずに灰色が現れることがあります。\">色</a>",
"ru": "<a href=\"/ru/docs/Web/CSS/color_value#interpolation\" title=\"Значения типа данных CSS <цвет> интерполируются по каждой компоненте - красной, зелёной и голубой - как вещественные числа с плавающей запятой. Обратите внимание, что интерполяция цветов происходит в цветовом пространстве sRGBA, учитывающем прозрачность, для предотвращения появления неожиданных серых цветов.\">цвет</a>"
},
"colorPlusThreeAbsoluteLengths": {
"de": "eine Farbe plus drei absolute Längen",
"en-US": "a color plus three absolute lengths",
"fr": "une couleur et trois longueurs absolues",
"ja": "色に続いて絶対的な長さ 3 つ",
"ru": "цвет плюс три абсолютных длины"
},
"computedColor": {
"de": "berechnete Farbe",
"en-US": "computed color",
"fr": "couleur calculée",
"ja": "色の計算値",
"ru": "вычисленный цвет",
"zh-CN": "颜色计算值"
},
"consistsOfTwoDimensionKeywords": {
"de": "Besteht aus zwei Schlüsselwörtern, einem pro Richtung",
"en-US": "Consists of two keywords, one per dimension",
"fr": "Deux mots-clés, chacun décrivant une dimension",
"ja": "2 つのキーワードから成り、方向ごとに 1 つずつ",
"ru": "Состоит из двух ключевых слов, по одному на размер"
},
"consistsOfTwoKeywordsForOriginAndOffsets": {
"de": "Besteht aus zwei Schlüsselwörtern, die den Ursprung und die beiden Versätze vom Ursprung repräsentieren, wobei beide als absolute Länge angegeben werden (falls eine <length> angegeben wurde), ansonsten einen Prozentwert.",
"en-US": "Consists of two keywords representing the origin and two offsets from that origin, each given as an absolute length (if given a <length>), otherwise as a percentage.",
"fr": "Deux mots-clés décrivant l'origine et deux représentant les décalages par rapport à cette origine. Chaque valeur est fournie comme une longueur absolue ou comme un pourcentage.",
"ja": "原点を表す 2 つのキーワードと、その原点からの 2 つのオフセットで、それぞれが絶対的な長さ (<length> が指定された場合) またはパーセント値で指定される。",
"ru": "Состоит из двух ключевых слов, представляющих начало координат и два смещения от этого начала, каждое из которых задаётся как абсолютная длина (если задана <length>), иначе как процент"
},
"continuous": {
"de": "fortlaufend",
"en-US": "continuous",
"fr": "continu",
"ja": "連続メディア",
"ru": "продолжительный"
},
"createsStackingContext": {
"de": "Erstellt <a href=\"/de/docs/Web/CSS/CSS_positioned_layout/Understanding_z-index/Stacking_context\">Stapelkontext</a>",
"en-US": "Creates <a href=\"/en-US/docs/Web/CSS/CSS_positioned_layout/Understanding_z-index/Stacking_context\">stacking context</a>",
"fr": "Crée un <a href=\"/fr/docs/Web/CSS/CSS_positioned_layout/Understanding_z-index/Stacking_context\">contexte d'empilement</a>",
"ja": "<a href=\"/ja/docs/Web/CSS/CSS_positioned_layout/Understanding_z-index/Stacking_context\">重ね合わせコンテキスト</a>の生成",
"ru": "Создаёт <a href=\"/ru/docs/Web/CSS/CSS_positioned_layout/Understanding_z-index/Stacking_context\">контекст наложения</a>"
},
"dependsOnLayoutModel": {
"de": "hängt vom Layoutmodell ab",
"en-US": "depends on layout model",
"fr": "dépend du modèle en couches",
"ja": "レイアウトモデルに依存",
"ru": "зависит от модели макета"
},
"dependsOnUserAgent": {
"de": "hängt vom User Agent ab",
"en-US": "depends on user agent",
"fr": "dépend de l'agent utilisateur",
"ja": "ユーザエージェントに依存",
"ru": "зависит от браузера"
},
"directChildrenOfElementsWithDisplayMozBoxMozInlineBox": {
"de": "Elemente, die direkte Kinder eines Elements mit einem CSS {{cssxref(\"display\")}} Wert von {{cssxref(\"-moz-box\")}} oder {{cssxref(\"-moz-inline-box\")}} oder {{cssxref(\"-webkit-box\")}} oder {{cssxref(\"-webkit-inline-box\")}} sind",
"en-US": "elements that are direct children of an element with a CSS {{cssxref(\"display\")}} value of {{cssxref(\"-moz-box\")}} or {{cssxref(\"-moz-inline-box\")}} or {{cssxref(\"-webkit-box\")}} or {{cssxref(\"-webkit-inline-box\")}}",
"fr": "éléments qui sont des fils direct d'un élément avec {{cssxref(\"display\")}} qui vaut {{cssxref(\"-moz-box\")}} ou {{cssxref(\"-moz-inline-box\")}} ou {{cssxref(\"-webkit-box\")}} ou {{cssxref(\"-webkit-inline-box\")}}",
"ja": "CSS の {{cssxref(\"display\")}} の値が {{cssxref(\"-moz-box\")}}, {{cssxref(\"-moz-inline-box\")}}, {{cssxref(\"-webkit-box\")}}, {{cssxref(\"-webkit-inline-box\")}} のいずれかである要素の直接の子要素",
"ru": "элементы, являющиеся прямыми потомками элемента со свойством {cssxref(\"display\")}} равным {{cssxref(\"-moz-box\")}}, {{cssxref(\"-moz-inline-box\")}}, {{cssxref(\"-webkit-box\")}} или {{cssxref(\"-webkit-inline-box\")}}"
},
"discrete": {
"de": "diskret",
"en-US": "discrete",
"fr": "discrète",
"ja": "離散値",
"zh-CN": "离散值"
},
"discreteButVisibleForDurationWhenAnimatedHidden": {
"en-US": "Discrete behavior except when animating to or from <code>hidden</code> is visible for the entire duration"
},
"discreteButVisibleForDurationWhenAnimatedNone": {
"en-US": "Discrete behavior except when animating to or from <code>none</code> is visible for the entire duration",
"zh-CN": "离散行为,但如果动画过渡以 <code>none</code> 开始或结束,则其在整个持续时间内都是可见的"
},
"eachOfShorthandPropertiesExceptUnicodeBiDiAndDirection": {
"de": "wie jede der Kurzschreibweisen Eigenschaften (alle Eigenschaften außer {{cssxref(\"unicode-bidi\")}} und {{cssxref(\"direction\")}})",
"en-US": "as each of the properties of the shorthand (all properties but {{cssxref(\"unicode-bidi\")}} and {{cssxref(\"direction\")}})",
"fr": "comme pour chaque propriété de la propriété raccourcie (toutes les propriétés sauf {{cssxref(\"unicode-bidi\")}} et {{cssxref(\"direction\")}})",
"ja": "この一括指定のそれぞれのプロパティとして ({{cssxref(\"unicode-bidi\")}} と {{cssxref(\"direction\")}}) を除いたすべてのプロパティ",
"ru": "как у каждого из подсвойств этого свойства (все свойства, кроме {{cssxref(\"unicode-bidi\")}} и {{cssxref(\"direction\")}})"
},
"elementsForWhichSizeContainmentCanApply": {
"en-US": "elements for which size containment can apply",
"zh-CN": "可应用尺寸局限的元素"
},
"elementsWithDefaultPreferredSize": {
"en-US": "Elements with default preferred size",
"zh-CN": "具有默认偏好尺寸的元素"
},
"elementsWithDisplayBoxOrInlineBox": {
"de": "Elemente mit einem CSS {{cssxref(\"display\")}} Wert von <code>box</code> oder <code>inline-box</code>",
"en-US": "elements with a CSS {{cssxref(\"display\")}} value of <code>box</code> or <code>inline-box</code>",
"fr": "éléments avec {{cssxref(\"display\")}} qui vaut <code>box</code> ou <code>inline-box</code>",
"ja": "CSS の {{cssxref(\"display\")}} の値が <code>box</code> または <code>inline-box</code> である要素",
"ru": "элементы с значением свойства {{cssxref(\"display\")}} <code>box</code> или <code>inline-box</code>"
},
"elementsWithDisplayMarker": {
"de": "Elemente mit <code>{{cssxref(\"display\")}}: marker;</code>",
"en-US": "elements with <code>{{cssxref(\"display\")}}: marker;</code>",
"fr": "éléments avec <code>{{cssxref(\"display\")}}: marker;</code>",
"ja": "<code>{{cssxref(\"display\")}}: marker;</code> の要素",
"ru": "элементы с <code>{{cssxref(\"display\")}}: marker;</code>",
"zh-CN": "设置了 <code>{{cssxref(\"display\")}}: marker;</code> 的元素"
},
"elementsWithDisplayMozBoxMozInlineBox": {
"de": "Elemente mit einem CSS {{cssxref(\"display\")}} Wert von <code>-moz-box</code>, <code>-moz-inline-box</code>, <code>-webkit-box</code> oder <code>-webkit-inline-box</code>",
"en-US": "elements with a CSS {{cssxref(\"display\")}} value of <code>-moz-box</code>, <code>-moz-inline-box</code>, <code>-webkit-box</code> or <code>-webkit-inline-box</code>",
"fr": "éléments dont CSS {{cssxref(\"display\")}} vaut <code>-moz-box</code>, <code>-moz-inline-box</code>, <code>-webkit-box</code> ou <code>-webkit-inline-box</code>",
"ja": "CSS の {{cssxref(\"display\")}} の値が <code>-moz-box</code>, <code>-moz-inline-box</code>, <code>-webkit-box</code>, <code>-webkit-inline-box</code> のいずれかである要素",
"ru": "элементы со значением {{cssxref(\"display\")}}: <code>-moz-box</code>, <code>-moz-inline-box</code>, <code>-webkit-box</code> или <code>-webkit-inline-box</code>"
},
"elementsWithOverflowNotVisibleAndReplacedElements": {
"de": "Elemente, deren {{cssxref(\"overflow\")}} nicht <code>visible</code> ist, und optional ersetzte Elemente, die Bilder oder Videos repräsentieren, und iframes",
"en-US": "elements with {{cssxref(\"overflow\")}} other than <code>visible</code>, and optionally replaced elements representing images or videos, and iframes",
"fr": "éléments dont {{cssxref(\"overflow\")}} ne vaut pas <code>visible</code> et éventuellement les éléments remplacés qui représentent des images, des vidéos ou des iframes",
"ja": "{{cssxref(\"overflow\")}} が <code>visible</code> 以外である要素、任意で画像、動画、iframe を表す置換要素",
"ru": "элементы с {{cssxref(\"overflow\")}} отличным от <code>visible</code>, и опционально заменяемые элементы представляющие собой картинки, видео и iframe"
},
"exclusionElements": {
"en-US": "exclusion elements",
"ja": "除外要素",
"zh-CN": "排除元素"
},
"filterList": {
"de": "eine <a href=\"/de/docs/Web/CSS/filter#interpolation\" title=\"Falls beide Filter Funktionslisten gleicher Länge ohne URLs haben, wird jede der Filterfunktionen nach ihren spezifischen Regeln interpoliert. Falls sie unterschiedliche Längen haben, werden die fehlenden äquivalenten Filterfunktionen der längeren Liste unter Verwendung der Standardwerte an das Ende der kürzeren Liste angehängt, anschließend werden alle Filterfunktionen entsprechend ihrer spezifischen Regeln interpoliert. Falls ein Filter 'none' ist, wird er durch die Filterfunktionsliste der anderen unter Verwendung der Standardwerte ersetzt, anschließend werden alle Filterfunktionen entsprechend ihrer spezifischen Regeln interpoliert. Ansonsten wird diskrete Interpolation verwendet.\">Filterfunktionsliste</a>",
"en-US": "a <a href=\"/en-US/docs/Web/CSS/filter#interpolation\" title=\"If both filters have a function list of same length without URL, each of their filters functions is interpolated according to its specific rules. If they have different lengths, the missing equivalent filter functions from the longer list are added to the end of the shorter list using their default values, then all filter functions are interpolated according to their specific rules. If one filter is 'none', it is replaced with the filter functions list of the other one using the filter function default values, then all filter functions are interpolated according to their specific rules. Otherwise discrete interpolation is used.\">filter function list</a>",
"fr": "une <a href=\"/fr/docs/Web/CSS/filter#interpolation\" title=\"Si les deux filtres ont une liste de fonctions de même longueur sans URL, chaque fonction de filtre est interpolée selon les règles qui lui sont propres. Si elles sont de longueur différente, les dernières fonctions de filtre de la liste la plus longue sont ajoutées à la liste la plus courte avec leurs valeurs par défaut et ensuite, toutes les fonctions de filtre sont interpolées entre elles selon leurs règles spécifiques. Dans les autres cas, c'est une interpolation discrète qui est utilisée.\">liste de fonctions de filtre</a>",
"ja": "<a href=\"/en-US/docs/Web/CSS/filter#interpolation\" title=\"両方のフィルターが同じ長さの関数リストを URL なしで持っている場合、 それぞれのフィルター関数はその固有の規則に従って補間されます。両者の長さが異なる場合は、 長い方のリストから欠けている等価なフィルター関数が既定値を使って短い方のリストの最後に追加され、 すべてのフィルター関数がそれぞれの規則に従って補間されます。一方のフィルターが 'none' の場合は,フィルター関数の既定値を用いてもう一方のフィルター関数のリストに置き換えられ,すべてのフィルター関数がその固有の規則に従って補間されます.それ以外の場合は,離散補間が用いられます。\">フィルター関数のリスト</a>"
},
"firstLetterPseudoElementsAndInlineLevelFirstChildren": {
"de": "{{cssxref(\"::first-letter\")}} Pseudoelemente und Inline-Level-Elemente, die die ersten Kinder eines Blockcontainers sind",
"en-US": "{{cssxref(\"::first-letter\")}} pseudo-elements and inline-level first child of a block container",
"fr": "pseudo-éléments {{cssxref(\"::first-letter\")}} et le premier fils, en ligne (<i>inline</i>) d'un conteneur de bloc",
"ja": "{{cssxref(\"::first-letter\")}} 擬似要素と、ブロックコンテナーの最初のインラインレベルの子",
"ru": "{{cssxref(\"::first-letter\")}} псевдоэлементы и первые строчные потомки блока"
},
"flexContainers": {
"de": "flexible Container",
"en-US": "flex containers",
"fr": "conteneurs flexibles",
"ja": "フレックスコンテナー",
"ru": "flex-контейнеры",
"zh-CN": "弹性容器"
},
"flexItemsAndAbsolutelyPositionedFlexContainerChildren": {
"de": "flexible Elemente und absolut positionierte Flexcontainerkinder",
"en-US": "flex items and absolutely-positioned flex container children",
"fr": "éléments flexibles, ainsi que les enfants absolument positionnés de conteneurs flexibles",
"ja": "フレックスアイテムおよび絶対位置指定されたフレックスコンテナーの子",
"ru": "flex-элементы и абсолютно-позицированые потомки flex-контейнера"
},
"flexItemsAndInFlowPseudos": {
"de": "flexible Elemente einschließlich In-Flow-Pseudo-Elemente",
"en-US": "flex items, including in-flow pseudo-elements",
"fr": "éléments flexibles, y compris les pseudo-éléments intégrés dans le flux",
"ja": "フロー内の擬似要素を含むフレックスアイテム",
"ru": "flex-элементы, в том числе в потоке псевдоэлементов"
},
"flexItemsGridItemsAbsolutelyPositionedContainerChildren": {
"en-US": "Flex items, grid items, and absolutely-positioned flex and grid container children",
"ja": "フレックスアイテム、グリッドアイテム、フレックスおよびグリッドコンテナーの絶対位置指定の子",
"ru": "flex-элементы, grid-элементы и абсолютно спозиционированные потомки flex- и grid-контейнеров"
},
"flexItemsGridItemsAndAbsolutelyPositionedBoxes": {
"en-US": "flex items, grid items, and absolutely-positioned boxes",
"ja": "フレックスアイテム、グリッドアイテム、絶対位置指定のボックス"
},
"floats": {
"de": "Flusselemente",
"en-US": "floats",
"fr": "flottants",
"ja": "浮動要素",
"ru": "плавает",
"zh-CN": "浮动元素"
},
"fontStretch": {
"de": "<a href=\"/de/docs/Web/CSS/font-stretch#interpolation\">Schriftbreite</a>",
"en-US": "a <a href=\"/en-US/docs/Web/CSS/font-stretch#interpolation\" title=\"Font stretch values are interpolated in discrete steps. The interpolation happens as though the ordered values are equally spaced real numbers; the result is rounded to the nearest value, with values exactly halfway between two values rounded towards the later value, that is the most expanded one.\">font stretch</a>",
"fr": "une <a href=\"/fr/docs/Web/CSS/font-stretch#interpolation\" title=\"Les valeurs de font stretch sont interpolées de façon discrète. L'interpolation s'effectue comme si les valeurs, dans l'ordre, étaient des nombres également distribués : le résultat est arrondi à la valeur la plus proche, les valeurs situées exactement entre deux valeurs sont arrondies à la valeur supérieure.\"><code>font stretch</code></a>",
"ja": "<a href=\"/ja/docs/Web/CSS/font-stretch#interpolation\" title=\"フォントの伸張値は、離散的な段階で補間されます。補間は、順序づけられた値が等間隔の実数であるかのように行われます。結果は、最も近い値に丸められ、 2 つの値のちょうど中間の値は、最も拡張された値である後の値に向かって丸められます。\">フォントの伸長値</a>",
"ru": "<a href=\"/ru/docs/Web/CSS/font-stretch#interpolation\" title=\"Значения ширины начертания шрифта интерполируются по дискретным шагам. Интерполяция происходит по упорядоченно расположенным значениям в пространстве действительных чисел; результат округляется к ближайшему значению, точно между двумя соседними значениями, округляется в сторону большего значения, которое является наиболее широким.\">ширина начертания шрифта</a>"
},
"fontWeight": {
"de": "<a href=\"/de/docs/Web/CSS/font-weight#interpolation\">Schriftgewichtung</a>",
"en-US": "a <a href=\"/en-US/docs/Web/CSS/font-weight#interpolation\" title=\"Font weight values are interpolated via discrete steps (multiples of 100). The interpolation happens in real number space and is converted to an integer by rounding to the nearest multiple of 100, with values halfway between multiples of 100 rounded towards positive infinity.\">font weight</a>",
"fr": "une <a href=\"/fr/docs/Web/CSS/font-weight#interpolation\" title=\"Les valeurs de graisse de police sont interpolées via des étapes discrètes (multiple de 100). L'interpolation a lieu dans un espace de nombres réels et est convertis en un entier arroundi au plus proche multiple de 100, avec les valeurs à mis chemin entre les multiples de 100, arrondies vers l'infini positif.\">graisse de police</a>",
"ja": "<a href=\"/ja/docs/Web/CSS/font-weight#interpolation\" title=\"フォントの太さは、離散的な段階 (100 の倍数) で補間されます。補間は実数空間で行われ、 100 の倍数に最も近い倍数に丸めて整数に変換され、 100 の倍数の中間の値は正の無限大に向けて丸められます。\">フォントの太さ</a>",
"ru": "<a href=\"/ru/docs/Web/CSS/font-weight#interpolation\" title=\"Значения жирности шрифта интерполируются через целое число дискретных шагов (умноженных на 100). Интерполяция происходит в пространстве действительных чисел, а получившееся значение преобразуется в целое путём округления до ближайшей сотни, со значениями точно между соседними множителями, округляемыми в сторону положительной бесконечности.\">жирность шрифта</a>"
},
"forLengthAbsoluteValueOtherwisePercentage": {
"de": "for {{cssxref(\"length\")}} the absolute value, otherwise a percentage",
"en-US": "for {{cssxref(\"length\")}} the absolute value, otherwise a percentage",
"fr": "pour une valeur de type {{cssxref(\"length\")}} sa valeur absolue, sinon un pourcentage",
"ja": "{{cssxref(\"length\")}} の場合は絶対的な値、それ以外の場合はパーセント値",
"ru": "для {{cssxref(\"length\")}} абсолютное значение, иначе процент",
"zh-CN": "对于 {{cssxref(\"length\")}} 则为绝对值,否则为百分比值"
},
"gridContainers": {
"de": "Gridcontainer",
"en-US": "grid containers",
"fr": "conteneurs de grille",
"ja": "グリッドコンテナー",
"ru": "сеточные контейнеры",
"zh-CN": "网格容器"
},
"gridContainersWithMasonryLayout": {
"en-US": "Grid containers with masonry layout",
"ja": "マソンリーレイアウトのグリッドコンテナー"
},
"gridContainersWithMasonryLayoutInTheirBlockAxis": {
"en-US": "Grid containers with masonry layout in their block axis",
"ja": "ブロック軸がマソンリーレイアウトのグリッドコンテナー"
},
"gridContainersWithMasonryLayoutInTheirInlineAxis": {
"en-US": "Grid containers with masonry layout in their inline axis",
"ja": "インライン軸がマソンリーレイアウトのグリッドコンテナー"
},
"gridItemsAndBoxesWithinGridContainer": {
"de": "Gridelemente und absolut positionierte Boxen, deren beinhaltender Block ein Gridcontainer ist",
"en-US": "grid items and absolutely-positioned boxes whose containing block is a grid container",
"fr": "éléments de grilles et boîtes positionnées de façon absolue dont le bloc englobant est un conteneur de grille",
"ja": "包含ブロックがグリッドコンテナーであるグリッドアイテムまたは絶対位置指定のボックス",
"ru": "элементы сетки и абсолютно-позиционированные блоки, находящиеся в сеточном контейнере"
},
"iframeElements": {
"en-US": "iframe elements",
"ja": "iframe 要素",
"zh-CN": "iframe 元素"
},
"images": {
"de": "Bilder",
"en-US": "images",
"fr": "images",
"ja": "画像",
"ru": "изображения",
"zh-CN": "图像"
},
"inFlowBlockLevelElements": {
"de": "in-flow block-level Elemente",
"en-US": "in-flow block-level elements",
"fr": "éléments de type bloc participant au flux",
"ja": "フロー内のブロックレベル要素",
"ru": "блочные элементы в потоке"
},
"inFlowChildrenOfBoxElements": {
"de": "Flusskindelemente von Boxelementen",
"en-US": "in-flow children of box elements",
"fr": "les éléments fils dans le flux des éléments de boîte",
"ja": "フロー内のボックス要素の子",
"ru": "потомки блочных элементов в потоке"
},
"inlineAxisHorizontalInXUL": {
"de": "<code>inline-axis</code> (<code>horizontal</code> in <a href=\"/de/docs/Mozilla/Tech/XUL\">XUL</a>)",
"en-US": "<code>inline-axis</code> (<code>horizontal</code> in <a href=\"/en-US/docs/Mozilla/Tech/XUL\">XUL</a>)",
"fr": "<code>inline-axis</code> (<code>horizontal</code> en <a href=\"/fr/docs/Mozilla/Tech/XUL\">XUL</a>)",
"ja": "<code>inline-axis</code> (<a href=\"/ja/docs/Mozilla/Tech/XUL\">XUL</a> における <code>horizontal</code>)",
"ru": "<code>inline-axis</code> (<code>horizontal</code> в <a href=\"/ru/docs/Mozilla/Tech/XUL\">XUL</a>)"
},
"inlineBoxesAndBlockContainers": {
"en-US": "Inline boxes and block containers"
},
"inlineLevelAndTableCellElements": {
"de": "Inline- und table-cell Elemente",
"en-US": "inline-level and table-cell elements",
"fr": "éléments en ligne et à ceux qui sont des cellules de tableau",
"ja": "インラインレベルおよびテーブルセル要素",
"ru": "строчным элементам и ячейкам таблиц"
},
"inlineSizeOfContainingBlock": {
"de": "Inlinegröße des beinhaltenden Blocks",
"en-US": "inline-size of containing block",
"fr": "la taille en ligne du bloc englobant",
"ja": "包含ブロックの inline-size",
"ru": "встроенный размер содержащего блока"
},
"integer": {
"de": "<a href=\"/de/docs/Web/CSS/integer#interpolation\">Integer</a>",
"en-US": "an <a href=\"/en-US/docs/Web/CSS/integer#interpolation\" title=\"Values of the <integer> CSS data type are interpolated via integer discrete steps. The calculation is done as if they were real, floating-point numbers and the discrete value is obtained using the floor function.\">integer</a>",
"fr": "un <a href=\"/fr/docs/Web/CSS/integer#interpolation\" title=\"Les valeurs du type <entier> sont interpolées par incrémentation discrète. Le calcul est réalisé comme si les valeurs étaient des nombres réels, en virgule flottante et la valeur discrète est obtenue en utilisant la fonction partie entière.\">entier</a>",
"ja": "<a href=\"/ja/docs/Web/CSS/integer#interpolation\" title=\"CSS のデータ型 <integer> の値は整数の離散ステップで補間される。実数の浮動小数点数であるかのように計算され、 floor 関数を用いて離散値が取得される。\">integer</a>",
"ru": "<a href=\"/ru/docs/Web/CSS/integer#interpolation\" title=\"Значения типа данных CSS <целое число> интерполируются через целое число дискретных шагов. Вычисления производятся словно над вещественными числами с плавающей запятой, а дискретные значения получаются с использованием функции floor.\">целое число</a>"
},
"interactive": {
"de": "interaktiv",
"en-US": "interactive",
"fr": "interactif",
"ja": "対話的",
"ru": "интерактивный"
},
"keywordOrNumericalValueBolderLighterTransformedToRealValue": {
"de": "das Schlüsselwort oder der numerische Wert wie angegeben, wobei <code>bolder</code> und <code>lighter</code> in einen realen Wert umgewandelt werden",
"en-US": "the keyword or the numerical value as specified, with <code>bolder</code> and <code>lighter</code> transformed to the real value",
"fr": "le mot-clé ou la valeur numérique, comme spécifié, transformé en la valeur réelle avec <code>bolder</code> et <code>lighter</code>",
"ja": "指定された通りのキーワードまたは数値であり、 <code>bolder</code> および <code>lighter</code> は実数に変換される",
"ru": "ключевое слово или числовое значение, с <code>bolder</code> и <code>lighter</code>, трансформируемися в действительное значение"
},
"keywordPlusIntegerIfDigits": {
"de": "angegebenes Schlüsselwort plus Ganzzahl, falls 'digits'",
"en-US": "specified keyword, plus integer if 'digits'",
"fr": "le mot-clé spécifié suivi d'un entier si 'digits'",
"ja": "指定されたキーワード、'digits' の場合は続けて整数",
"ru": "указанное ключевое слово, плюс целые числа, если цифры"
},
"length": {
"de": "<a href=\"/de/docs/Web/CSS/length#interpolation\">Längenangabe</a>",
"en-US": "a <a href=\"/en-US/docs/Web/CSS/length#interpolation\" title=\"Values of the <length> CSS data type are interpolated as real, floating-point numbers.\">length</a>",
"fr": "une <a href=\"/fr/docs/Web/CSS/longueur#interpolation\" title=\"Les valeurs du type <longueur> sont interpolées comme des nombres réels à virgule flottante.\">longueur</a>",
"ja": "<a href=\"/ja/docs/Web/CSS/length#interpolation\" title=\"CSS の <length> データ型の値は、実数すなわち浮動小数点数として補間されます。\">length</a>",
"ru": "<a href=\"/ru/docs/Web/CSS/length#interpolation\" title=\"Значения типа данных CSS <длина> интерполируются как вещественные числа с плавающей запятой.\">длина</a>"
},
"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto": {
"de": "falls als Länge angegeben, die zugehörige absolute Länge; falls als Prozentwert angegeben, der angegebene Wert; ansonsten <code>auto</code>",
"en-US": "if specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, <code>auto</code>",
"fr": "si spécifié par une longueur, la valeur absolue correspondante; si spécifié par un pourcentage, la valeur telle que spécifiée; sinon, <code>auto</code>",
"ja": "長さで指定されると相当する絶対的な長さ、パーセント値として指定されると指定値、それ以外では <code>auto</code>",
"ru": "если указано как длина - абсолютная длина; если указано как проценты - заданное значение; в противном случае <code>auto</code>"
},
"lengthOrPercentageBeforeKeywordIfBothPresent": {
"de": "die Länge oder der Prozentwert vor dem Schlüsselwort, falls beide vorhanden sind",
"en-US": "the length or percentage before the keyword, if both are present",
"fr": "la longueur ou le pourcentage avant le mot-clé si les deux sont présents",
"ja": "両方がある場合は、キーワードの前に長さまたはパーセント値",
"ru": "длина или проценты перед ключевым словом, если присутствуют оба"
},
"lengthOrPercentageBeforeKeywords": {
"de": "Die Länge oder der Prozentwert vor den Schlüsselwörtern, falls beide angegeben wurden. Falls mehrere Schlüsselwörter angegeben wurden, erscheinen sie in derselben Reihenfolge, wie in der formellen Grammatik angegeben.",
"en-US": "The length or percentage before the keywords, if both are present. If several keywords are present, they appear in the same order as their appearance in the formal grammar.",
"fr": "La longueur ou le pourcentage avant les mots-clés, si les deux sont présents. Si plusieurs mots-clés sont présents, ils apparaissent dans le même ordre que dans la grammaire formelle.",
"ja": "両方がある場合は、キーワードの前に長さまたはパーセント値。複数のキーワードがある場合は、形式文法での出現順と同じ順序で現れる。",
"ru": "Длина или процент до ключевых слов, если присутствуют оба. Если присутствуют несколько ключевых слов, они появляются в том же порядке, как и в формальной грамматике."
},
"lengthsAsPercentages": {
"en-US": "The lengths may be specified as percentages"
},
"limitedSVGElementsCircle": {
"en-US": "{{SVGElement(\"circle\")}} element in {{SVGElement(\"svg\")}}"
},
"limitedSVGElementsEllipse": {
"en-US": "{{SVGElement(\"ellipse\")}} and {{SVGElement(\"circle\")}} elements in {{SVGElement(\"svg\")}}"
},
"limitedSVGElementsEllipseRect": {
"en-US": "{{SVGElement(\"ellipse\")}} and {{SVGElement(\"rect\")}} elements in {{SVGElement(\"svg\")}}"
},
"limitedSVGElementsFilterPrimitives": {
"en-US": "The set of elements that control the output of a {{SVGElement(\"filter\")}} element in {{SVGElement(\"svg\")}}"
},
"limitedSVGElementsFloodAndDropShadow": {
"en-US": "{{SVGElement(\"feFlood\")}} and {{SVGElement(\"feDropShadow\")}} elements in {{SVGElement(\"svg\")}}"