diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-12 01:05:16 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-24 08:28:41 +0900 |
commit | f1650fbb27022456d9fc3ff8cd4b5ec676ca3a2e (patch) | |
tree | 67b0bd0b7ca07bd2d2888b1ea70954b402b42d23 /files/ja/web/css/background-repeat/index.html | |
parent | 2bc0dfac61c17530bf3e89a43a6b7ef965357eeb (diff) | |
download | translated-content-f1650fbb27022456d9fc3ff8cd4b5ec676ca3a2e.tar.gz translated-content-f1650fbb27022456d9fc3ff8cd4b5ec676ca3a2e.tar.bz2 translated-content-f1650fbb27022456d9fc3ff8cd4b5ec676ca3a2e.zip |
CSS Backgrounds and Borders 背景関係のプロパティの変換準備
Diffstat (limited to 'files/ja/web/css/background-repeat/index.html')
-rw-r--r-- | files/ja/web/css/background-repeat/index.html | 231 |
1 files changed, 0 insertions, 231 deletions
diff --git a/files/ja/web/css/background-repeat/index.html b/files/ja/web/css/background-repeat/index.html deleted file mode 100644 index 216cebb980..0000000000 --- a/files/ja/web/css/background-repeat/index.html +++ /dev/null @@ -1,231 +0,0 @@ ---- -title: background-repeat -slug: Web/CSS/background-repeat -tags: - - Background - - CSS - - CSS プロパティ - - CSS 背景と境界 - - background-repeat - - リファレンス -translation_of: Web/CSS/background-repeat ---- -<div>{{CSSRef}}</div> - -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>background-repeat</code></strong> プロパティは、背景画像をどのように繰り返すかを設定します。背景画像は水平軸方向と垂直軸方向に繰り返したり、まったく繰り返さないようにしたりすることができます。</p> - -<div>{{EmbedInteractiveExample("pages/css/background-repeat.html")}}</div> - -<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> - -<p>既定では、繰り返された画像が要素のサイズによって切り取られます。他にも、背景画像のリサイズを伴う方法 (<code>round</code> を使用) や、背景画像間にスペースを挿入する方法 (<code>space</code> を使用) など、別の敷き詰め方法を選択することも可能です。</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush: css notranslate">/* キーワード値 */ -background-repeat: repeat-x; -background-repeat: repeat-y; -background-repeat: repeat; -background-repeat: space; -background-repeat: round; -background-repeat: no-repeat; - -/* 値2つの構文: 水平方向 | 垂直方向 */ -background-repeat: repeat space; -background-repeat: repeat repeat; -background-repeat: round space; -background-repeat: no-repeat round; - -/* グローバル値 */ -background-repeat: inherit; -background-repeat: initial; -background-repeat: unset; -</pre> - -<h3 id="Values" name="Values">値</h3> - -<dl> - <dt><code><repeat-style></code></dt> - <dd>値1つの構文は完全な値2つの構文に対する一括指定です。</dd> - <dd> - <table class="standard-table"> - <tbody> - <tr> - <td><strong>単一の値</strong></td> - <td><strong>対応するペアの値</strong></td> - </tr> - <tr> - <td><code>repeat-x</code></td> - <td><code>repeat no-repeat</code></td> - </tr> - <tr> - <td><code>repeat-y</code></td> - <td><code>no-repeat repeat</code></td> - </tr> - <tr> - <td><code>repeat</code></td> - <td><code>repeat repeat</code></td> - </tr> - <tr> - <td><code>space</code></td> - <td><code>space space</code></td> - </tr> - <tr> - <td><code>round</code></td> - <td><code>round round</code></td> - </tr> - <tr> - <td><code>no-repeat</code></td> - <td><code>no-repeat no-repeat</code></td> - </tr> - </tbody> - </table> - 値 2 つの構文では、最初の値は水平方向の繰り返しの振る舞いを表し、2 つ目の値は垂直方向の振る舞いを表します。以下は各値が各方向にどう働くかの説明です:</dd> - <dd> - <table class="standard-table"> - <tbody> - <tr> - <td><code>repeat</code></td> - <td>画像は描画領域全体を覆うのに必要な回数だけ、繰り返し描画されます。最後の背景画像が領域に収まりきらない場合は切り取られます。</td> - </tr> - <tr> - <td><code>space</code></td> - <td>画像は指定された方向に切り抜きなしで敷き詰められる回数だけ繰り返されます。最初の画像と最後の画像は領域の両端にそれぞれ接触するように描画され、余白が画像同士の間に均一に分配されます。{{cssxref("background-position")}} プロパティは、画像を 1 つしか切り抜きなしで敷き詰められない場合を除き、無視されます。<code>space</code> を使用していて背景画像が切り抜かれるのは、領域幅を超える背景画像が指定された場合のみです。</td> - </tr> - <tr> - <td><code>round</code></td> - <td>利用できる空間が広がるにつれ、繰り返し描画された画像は、画像をもう1つ追加するだけの余裕 (残りの空間 ≧ 画像の幅の半分) ができるまで、 (隙間を空けずに) 伸長されます。次の画像が追加されると、描画されたすべての画像が収まるように縮小されます。例えば、元々の幅が 260px の画像が3回繰り返されているとき、それぞれが幅 300px になるまで伸長され、それから画像がもう1つ追加されます。そのときそれぞれは 225px に縮小されます。</td> - </tr> - <tr> - <td><code>no-repeat</code></td> - <td>画像は繰り返し描画されません (したがって背景画像描画領域が完全に埋め尽くされるとは限りません)。背景画像の位置は {{cssxref("background-position")}} CSS プロパティで定義されます。</td> - </tr> - </tbody> - </table> - </dd> -</dl> - -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> - -{{csssyntax}} - -<h2 id="Examples" name="Examples">例</h2> - -<h3 id="HTML" name="HTML">HTML</h3> - -<pre class="brush: html notranslate"><ol> - <li>no-repeat - <div class="one"></div> - </li> - <li>repeat - <div class="two"></div> - </li> - <li>repeat-x - <div class="three"></div> - </li> - <li>repeat-y - <div class="four"></div> - </li> - <li>space - <div class="five"></div> - </li> - <li>round - <div class="six"></div> - </li> - <li>repeat-x, repeat-y (multiple images) - <div class="seven"></div> - </li> -</ol></pre> - -<h3 id="CSS">CSS</h3> - -<pre class="brush: css notranslate">/* 例のすべての div で共通 */ -ol, -li { - margin: 0; - padding: 0; -} -li { - margin-bottom: 12px; -} -div { - background-image: url(https://mdn.mozillademos.org/files/12005/starsolid.gif); - width: 160px; - height: 70px; -} - -/* 背景の繰り返し */ -.one { - background-repeat: no-repeat; -} -.two { - background-repeat: repeat; -} -.three { - background-repeat: repeat-x; -} -.four { - background-repeat: repeat-y; -} -.five { - background-repeat: space; -} -.six { - background-repeat: round; -} - -/* 複数の画像 */ -.seven { - background-image: url(https://mdn.mozillademos.org/files/12005/starsolid.gif), - url(https://developer.mozilla.org/static/img/favicon32.png); - background-repeat: repeat-x, - repeat-y; - height: 144px; -}</pre> - -<h3 id="Result" name="Result">結果</h3> - -<p>この例では、リストの各要素に <code>background-repeat</code> の異なる値が対応付けられています。</p> - -<p>{{EmbedLiveSample('Examples', 240, 560)}}</p> - -<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 Backgrounds', '#the-background-repeat', 'background-repeat')}}</td> - <td>{{Spec2('CSS3 Backgrounds')}}</td> - <td>複数の背景画像、水平・垂直方向にそれぞれ別の繰り返し方法を指定できる値 2 つの構文、<code>space</code> と <code>round</code> キーワード、および背景描画領域を明確に定義したことによる、インラインレベル要素に対する背景のサポートの追加。</td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'colors.html#propdef-background-repeat', 'background-repeat')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td>特筆すべき変更点はなし</td> - </tr> - <tr> - <td>{{SpecName('CSS1', '#background-repeat', 'background-repeat')}}</td> - <td>{{Spec2('CSS1')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<p>{{cssinfo}}</p> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> - -<p>{{Compat("css.properties.background-repeat", "background-repeat")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li><a href="/ja/docs/Web/CSS/Using_CSS_multiple_backgrounds" title="CSS/Using_CSS_multiple_backgrounds">CSS での複数の背景の利用方法</a></li> -</ul> |