diff options
Diffstat (limited to 'files/ja/web/css/transform-box/index.html')
-rw-r--r-- | files/ja/web/css/transform-box/index.html | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/files/ja/web/css/transform-box/index.html b/files/ja/web/css/transform-box/index.html deleted file mode 100644 index ef15625684..0000000000 --- a/files/ja/web/css/transform-box/index.html +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: transform-box -slug: Web/CSS/transform-box -tags: - - CSS - - CSS Property - - CSS Transforms - - CSS プロパティ - - CSS 変形 - - Experimental - - NeedsBrowserCompatibility - - NeedsExample - - Reference -translation_of: Web/CSS/transform-box ---- -<div>{{CSSRef}}</div> - -<p><strong><code>transform-box</code></strong> プロパティは、 {{cssxref("transform")}} と {{cssxref("transform-origin")}} プロパティに関連したレイアウトボックスを定義します。</p> - -<pre class="brush:css no-line-numbers">/* キーワード値 */ -transform-box: content-box; -transform-box: border-box; -transform-box: fill-box; -transform-box: stroke-box; -transform-box: view-box; - -/* グローバル値 */ -transform-box: inherit; -transform-box: initial; -transform-box: unset; -</pre> - -<p>{{cssinfo}}</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<p><code>transform-box</code> プロパティは、以下のキーワードの 1 つで指定されます。</p> - -<h3 id="Values" name="Values">値</h3> - -<dl> - <dt><code>content-box</code></dt> - <dd> - <p>コンテンツボックスを参照ボックスとして使用します。 {{htmlElement("table")}} の参照ボックスは、テーブルボックスではなく、安定ラッパーボックスの境界ボックスになります。</p> - </dd> - <dt><code>border-box</code></dt> - <dd>参照ボックスとして、境界ボックスが使用されます。テーブルの参照ボックスはテーブルボックスではなく、テーブルをラップしているボックスの境界ボックスとなります。</dd> - <dt><code>fill-box</code></dt> - <dd>参照ボックスとしてバウンディングボックスが使用されます。</dd> - <dt><code>stroke-box</code></dt> - <dd>ストロークのバウンディングボックスを基準ボックスとしています。</dd> - <dt><code>view-box</code></dt> - <dd>参照ボックスとして、直近の {{Glossary("SVG")}} を使用します。SVG ビューポートに {{SVGAttr("viewBox")}} 属性が指定されていた場合、参照ボックスは <code>viewBox</code> 属性によって設定された座標系の原点に配置されます。また、参照ボックスの寸法は <code>viewBox</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('CSS3 Transforms', '#transform-box', 'transform-box')}}</td> - <td>{{Spec2('CSS3 Transforms')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.transform-box")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li><a href="/ja/docs/CSS/Using_CSS_transforms">CSS 変形の利用</a></li> - <li>{{cssxref("transform")}}, {{cssxref("transform-origin")}}</li> -</ul> |