aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/background-attachment/index.md
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-14 10:11:43 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-24 08:28:41 +0900
commitdc36f70aa600797fd07c7324f39fdde1a5ae71d9 (patch)
tree214d0e2f8c4fdd6bef6dcb05aa9f891374b0911e /files/ja/web/css/background-attachment/index.md
parentf1650fbb27022456d9fc3ff8cd4b5ec676ca3a2e (diff)
downloadtranslated-content-dc36f70aa600797fd07c7324f39fdde1a5ae71d9.tar.gz
translated-content-dc36f70aa600797fd07c7324f39fdde1a5ae71d9.tar.bz2
translated-content-dc36f70aa600797fd07c7324f39fdde1a5ae71d9.zip
CSS Backgrounds に関するプロパティの文書を更新
- 2021/11/12 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/background-attachment/index.md')
-rw-r--r--files/ja/web/css/background-attachment/index.md155
1 files changed, 67 insertions, 88 deletions
diff --git a/files/ja/web/css/background-attachment/index.md b/files/ja/web/css/background-attachment/index.md
index 230923fd03..a4d68539be 100644
--- a/files/ja/web/css/background-attachment/index.md
+++ b/files/ja/web/css/background-attachment/index.md
@@ -3,23 +3,23 @@ title: background-attachment
slug: Web/CSS/background-attachment
tags:
- CSS
- - CSS Background
- - CSS Property
- - Reference
- - 'recipe:css-property'
+ - CSS 背景
+ - CSS プロパティ
+ - リファレンス
+ - recipe:css-property
+browser-compat: css.properties.background-attachment
translation_of: Web/CSS/background-attachment
---
-<div>{{CSSRef}}</div>
+{{CSSRef}}
-<p><strong><code>background-attachment</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、背景画像の位置を{{glossary("Viewport", "ビューポート")}}の中で固定するか、包含ブロックと一緒にスクロールするかを設定します。</p>
+**`background-attachment`** は [CSS](/ja/docs/Web/CSS) のプロパティで、背景画像の位置を{{glossary("Viewport", "ビューポート")}}の中で固定するか、包含ブロックと一緒にスクロールするかを設定します。
-<div>{{EmbedInteractiveExample("pages/css/background-attachment.html")}}</div>
+{{EmbedInteractiveExample("pages/css/background-attachment.html")}}
-<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div>
+## 構文
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="brush: css no-line-numbers notranslate">/* キーワード値 */
+```css
+/* キーワード値 */
background-attachment: scroll;
background-attachment: fixed;
background-attachment: local;
@@ -27,62 +27,65 @@ background-attachment: local;
/* グローバル値 */
background-attachment: inherit;
background-attachment: initial;
+background-attachment: revert;
background-attachment: unset;
-</pre>
+```
-<p><code>background-attachment</code> プロパティは、以下に挙げた値のうちの一つで指定します。</p>
+`background-attachment` プロパティは、以下に挙げた値のうちの一つで指定します。
-<h3 id="Values" name="Values">値</h3>
+### 値
-<dl>
- <dt><code>fixed</code></dt>
- <dd>背景はビューポートに対する相対位置で固定されます。要素がスクロール機構を持っていたとしても、背景画像は要素とともには動きません。 (これは {{cssxref("background-clip", "background-clip: text", "#text")}} とは両立できません)</dd>
- <dt><code>local</code></dt>
- <dd>背景は要素の内容に対する相対位置で固定されます。要素がスクロール機構を持っていた場合、背景画像は要素の内容とともにスクロールします。背景画像の描画エリアと配置エリアは、それらを囲む境界ではなく、要素のスクロール可能なエリアを基準にします。</dd>
- <dt><code>scroll</code></dt>
- <dd>背景は要素自身に対する相対位置で固定され、内容と共にスクロールしません。 (要素の境界に対して効果的に張り付きます。)</dd>
-</dl>
+- `fixed`
+ - : 背景はビューポートに対する相対位置で固定されます。要素がスクロール機構を持っていたとしても、背景画像は要素とともには動きません。 (これは {{cssxref("background-clip", "background-clip: text", "#values")}} とは両立できません)
+- `local`
+ - : 背景は要素の内容に対する相対位置で固定されます。要素がスクロール機構を持っていた場合、背景画像は要素の内容とともにスクロールします。背景画像の描画エリアと配置エリアは、それらを囲む境界ではなく、要素のスクロール可能なエリアを基準にします。
+- `scroll`
+ - : 背景は要素自身に対する相対位置で固定され、内容と共にスクロールしません。 (要素の境界に対して効果的に張り付きます。)
-<h2 id="Formal_definition" name="Formal_definition">公式定義</h2>
+## 公式定義
-<p>{{cssinfo}}</p>
+{{cssinfo}}
-<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2>
+## 形式文法
{{csssyntax}}
-<h2 id="Examples" name="Examples">例</h2>
+## 例
-<h3 id="Simple_example" name="Simple_example">単純な例</h3>
+<h3 id="Simple_example">単純な例</h3>
-<h4 id="HTML">HTML</h4>
+#### HTML
-<pre class="brush: html notranslate">&lt;p&gt;
+```html
+<p>
There were doors all round the hall, but they were all locked; and when
Alice had been all the way down one side and up the other, trying every
door, she walked sadly down the middle, wondering how she was ever to
get out again.
-&lt;/p&gt;</pre>
+</p>
+```
-<h4 id="CSS">CSS</h4>
+#### CSS
-<pre class="brush:css; highlight:[3]; notranslate">p {
- background-image: url("https://mdn.mozillademos.org/files/12057/starsolid.gif");
+```css
+p {
+ background-image: url("starsolid.gif");
background-attachment: fixed;
}
-</pre>
+```
<h4 id="Result" name="Result">結果</h4>
-<p>{{EmbedLiveSample("Simple_example")}}</p>
+{{EmbedLiveSample("Simple_example")}}
-<h3 id="Multiple_background_images" name="Multiple_background_images">複数の背景画像</h3>
+<h3 id="Multiple_background_images">複数の背景画像</h3>
-<p>このプロパティは複数の背景画像に対応しており、それぞれの背景画像に異なる <code>&lt;attachment&gt;</code> をカンマ区切りで指定できます。それぞれの画像には先頭から順番に <code>&lt;attachment&gt;</code> の値が適用されます。</p>
+このプロパティは複数の背景画像に対応しており、それぞれの背景画像に異なる `<attachment>` をカンマ区切りで指定できます。それぞれの画像には先頭から順番に `<attachment>` の値が適用されます。
-<h4 id="HTML_2">HTML</h4>
+#### HTML
-<pre class="brush: html notranslate">&lt;p&gt;
+```html
+<p>
There were doors all round the hall, but they were all locked; and when
Alice had been all the way down one side and up the other, trying every
door, she walked sadly down the middle, wondering how she was ever to
@@ -96,56 +99,32 @@ background-attachment: unset;
time round, she came upon a low curtain she had not noticed before, and
behind it was a little door about fifteen inches high: she tried the
little golden key in the lock, and to her great delight it fitted!
-&lt;/p&gt;</pre>
+</p>
+```
-<h4 id="CSS_2">CSS</h4>
+#### CSS
-<pre class="brush:css; highlight:[3]; notranslate">p {
- background-image: url("https://mdn.mozillademos.org/files/12057/starsolid.gif"),
- url("https://mdn.mozillademos.org/files/12059/startransparent.gif");
+```css
+p {
+ background-image: url("starsolid.gif"),
+ url("startransparent.gif");
background-attachment: fixed, scroll;
background-repeat: no-repeat, repeat-y;
-}</pre>
-
-<h4 id="Result_2" name="Result_2">結果</h4>
-
-<p>{{EmbedLiveSample("Multiple_background_images")}}</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-attachment', 'background-attachment')}}</td>
- <td>{{Spec2('CSS3 Backgrounds')}}</td>
- <td>複数の背景画像と <code>local</code> に対応するために一括指定プロパティを拡張。</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS2.1', 'colors.html#propdef-background-attachment', 'background-attachment')}}</td>
- <td>{{Spec2('CSS2.1')}}</td>
- <td>重要な変更なし。</td>
- </tr>
- <tr>
- <td>{{SpecName('CSS1', '#background-attachment', 'background-attachment')}}</td>
- <td>{{Spec2('CSS1')}}</td>
- <td>重要な変更なし。</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("css.properties.background-attachment")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li><a href="/ja/docs/Web/CSS/CSS_Backgrounds_and_Borders/Using_multiple_backgrounds">複数の背景画像を使う</a></li>
-</ul>
+}
+```
+
+#### 結果
+
+{{EmbedLiveSample("Multiple_background_images")}}
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- [複数の背景画像を使う](/ja/docs/Web/CSS/CSS_Backgrounds_and_Borders/Using_multiple_backgrounds)