blob: 329fa31afe9c7588930a0c77add6e121b415fc26 (
plain)
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
|
---
title: mask-border-width
slug: Web/CSS/mask-border-width
tags:
- CSS
- CSS プロパティ
- CSS マスク
- Experimental
- Reference
translation_of: Web/CSS/mask-border-width
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>mask-border-width</code></strong> プロパティは、要素の<a href="/ja/docs/Web/CSS/mask-border">マスク境界</a>の幅を設定します。</p>
<h2 id="Syntax">Syntax</h2>
<pre class="brush:css no-line-numbers">/* キーワード値 */
mask-border-width: auto;
/* <length> 値 */
mask-border-width: 1rem;
/* <percentage> 値 */
mask-border-width: 25%;
/* <number> 値 */
mask-border-width: 3;
/* 上下 | 左右 */
mask-border-width: 2em 3em;
/* 上 | 左右 | 下 */
mask-border-width: 5% 15% 10%;
/* 上 | 右 | 下 | 左 */
mask-border-width: 5% 2em 10% auto;
/* グローバル値 */
mask-border-width: inherit;
mask-border-width: initial;
mask-border-width: unset;
</pre>
<p><code>mask-border-width</code> プロパティは、以下の値のリストの中から1~4つの値を使って指定することができます。</p>
<ul>
<li>値が<strong>1つ</strong>指定された場合、<strong>全四辺</strong>に同じマージンが適用される。</li>
<li>値が<strong>2つ</strong>指定された場合、1つ目のマージンは<strong>上下</strong>、2つ目は<strong>左右</strong>の辺に適用される。</li>
<li>値が<strong>3つ</strong>指定された場合、1つ目のマージンは<strong>上</strong>、2つ目は<strong>左右</strong>、3つ目は<strong>下</strong>の辺に適用される。</li>
<li>値が<strong>4つ</strong>指定された場合、マージンはそれぞれ<strong>上</strong>、<strong>右</strong>、<strong>下</strong>、<strong>左</strong>の順 (時計回り) に適用される。</li>
</ul>
<h3 id="Values" name="Values">値</h3>
<dl>
<dt><code><length-percentage></code></dt>
<dd>マスク境界の幅を、 {{cssxref("<length>")}} または {{cssxref("<percentage>")}} で指定します。パーセント値は左右のオフセットについては境界領域の<em>幅</em>に対する相対値、上下のオフセットについては境界領域の<em>高さ</em>に対する相対値です。負の数であってはなりません。</dd>
<dt><code><number></code></dt>
<dd>マスク境界の幅を、対応する {{cssxref("border-width")}} の倍数で指定します。負の数であってはなりません。</dd>
<dt><code>auto</code></dt>
<dd>マスク境界の幅は、対応する {{cssxref("mask-border-slice")}} の固有の幅または高さ (適切な方) と等しくなります。画像が要求された固有の寸法を持っていない場合は、対応する <code>border-width</code> が代わりに使用されます。</dd>
</dl>
<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
{{csssyntax}}
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS Masks", "#propdef-mask-border-width", "mask-border-width")}}</td>
<td>{{Spec2("CSS Masks")}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<p>{{cssinfo}}</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>TBD</p>
|