--- title: paint-order slug: Web/CSS/paint-order tags: - CSS - Experimental - Reference - SVG - ウェブ - 描画順序 translation_of: Web/CSS/paint-order ---
paint-order
は CSS のプロパティで、テキストコンテンツやシェイプが描画されるときの塗りつぶしと輪郭 (およびマーカーの描画) の順序を制御することができます。
/* 通常 */ paint-order: normal; /* 単一の値 */ paint-order: stroke; /* 最初に輪郭、それから塗りつぶしとマーカーを描画 */ paint-order: markers; /* 最初にマーカー、それから塗りつぶしと輪郭 */ /* 複数の値 */ paint-order: stroke fill; /* 最初に輪郭を、それから塗りつぶしを、そしてマーカーを描く */ paint-order: markers stroke fill; /* マーカー、輪郭、塗りつぶしの順に描く */
値が指定されない場合、既定の描画順序は fill
, stroke
, markers
です。
一つの値で指定されると、それが最初に描画され、続いて他の二つが互いの既定の順序で描画されます。二つの値が指定されると、指定された順序で描画を行い、続いて指定されなかった一つが描画されます。
メモ: このプロパティの場合、マーカーは marker-*
プロパティ (例えば marker-start
) および <marker>
要素を使用した SVG 図形を描く場合のみ適用されます。 HTML テキストには適用されませんので、その場合は stroke
および fill
の順序のみが指定できます。
normal
stroke
(輪郭),fill
(塗りつぶし),markers
(マーカー)<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200"> <text x="10" y="75">stroke in front</text> <text x="10" y="150" class="stroke-behind">stroke behind</text> </svg>
text { font-family: sans-serif; font-size: 50px; font-weight: bold; fill: black; stroke: red; stroke-width: 4px; } .stroke-behind { paint-order: stroke fill; }
{{EmbedLiveSample("Examples", "100%", 165)}}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("SVG2", "painting.html#PaintOrder", "paint-order")}} | {{Spec2("SVG2")}} | 初回定義 |
{{CSSInfo}}
{{Compat("css.properties.paint-order")}}