From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/mask-border-repeat/index.html | 80 ++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 files/ja/web/css/mask-border-repeat/index.html (limited to 'files/ja/web/css/mask-border-repeat/index.html') diff --git a/files/ja/web/css/mask-border-repeat/index.html b/files/ja/web/css/mask-border-repeat/index.html new file mode 100644 index 0000000000..4e013f9246 --- /dev/null +++ b/files/ja/web/css/mask-border-repeat/index.html @@ -0,0 +1,80 @@ +--- +title: mask-border-repeat +slug: Web/CSS/mask-border-repeat +tags: + - CSS + - CSS プロパティ + - CSS マスク + - Experimental + - Reference +translation_of: Web/CSS/mask-border-repeat +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

CSSmask-border-repeat プロパティは、どのように元の画像の辺の領域を要素のマスク境界の寸法に合うように調整するかを設定します。

+ +

構文

+ +
/* キーワード値 */
+mask-border-repeat: stretch;
+mask-border-repeat: repeat;
+mask-border-repeat: round;
+mask-border-repeat: space;
+
+/* 上下 | 左右 */
+mask-border-repeat: round stretch;
+
+/* グローバル値 */
+mask-border-repeat: inherit;
+mask-border-repeat: initial;
+mask-border-repeat: unset;
+
+ +

mask-border-repeat プロパティは、以下の値のリストから一つまたは二つの値を使用して指定します。

+ + + +

+ +
+
stretch
+
元の画像の辺の領域は、それぞれの境界の間の溝を埋めるように引き伸ばされます。
+
repeat
+
元の画像の辺の領域は、それぞれの境界の間の溝を埋めるようにタイル配置 (繰り返し) されます。タイルは正しく合うように切り取られることがあります。
+
round
+
元の画像の辺の領域は、それぞれの境界の間の溝を埋めるようにタイル配置 (繰り返し) されます。タイルは正しく合うように引き伸ばされることがあります。
+
space
+
元の画像の辺の領域は、それぞれの境界の間の溝を埋めるようにタイル配置 (繰り返し) されます。正しく合うように間隔が配布されることがあります。
+
+ +

形式文法

+ +
{{csssyntax}}
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Masks", "#propdef-mask-border-repeat", "mask-border-repeat")}}{{Spec2("CSS Masks")}}初回定義
+ +
{{cssinfo}}
+ +

ブラウザーの対応

+ +

TBD

-- cgit v1.2.3-54-g00ecf