aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/page-break-before
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/page-break-before
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/css/page-break-before')
-rw-r--r--files/ja/web/css/page-break-before/index.html148
1 files changed, 148 insertions, 0 deletions
diff --git a/files/ja/web/css/page-break-before/index.html b/files/ja/web/css/page-break-before/index.html
new file mode 100644
index 0000000000..fa72a60cca
--- /dev/null
+++ b/files/ja/web/css/page-break-before/index.html
@@ -0,0 +1,148 @@
+---
+title: page-break-before
+slug: Web/CSS/page-break-before
+tags:
+ - CSS
+ - CSS プロパティ
+ - CSS ページ付きメディア
+ - Reference
+ - 改ページ
+translation_of: Web/CSS/page-break-before
+---
+<div>{{CSSRef}}</div>
+
+<div class="blockIndicator warning">このプロパティは {{cssxref("break-before")}} プロパティによって置き換えられました。</div>
+
+<p><strong><code>page-break-before</code></strong> CSS プロパティは、現在の要素の<em>前で</em>改ページが行われるように調整します。</p>
+
+<p>このプロパティは、ボックスを生成するブロックレベル要素に適用されます。ボックスを生成しない空の {{HTMLElement("div")}} には適用されません。</p>
+
+<pre class="brush:css no-line-numbers">/* キーワード値 */
+page-break-before: auto;
+page-break-before: always;
+page-break-before: avoid;
+page-break-before: left;
+page-break-before: right;
+page-break-before: recto;
+page-break-before: verso;
+
+/* グローバル値 */
+page-break-before: inherit;
+page-break-before: initial;
+page-break-before: unset;
+</pre>
+
+<p>{{cssinfo}}</p>
+
+<h2 id="Page_break_aliases" name="Page_break_aliases">改ページの別名</h2>
+
+<p><code>page-break-before</code> プロパティは古いプロパティとなり、 {{cssxref("break-before")}} によって置き換えられました。</p>
+
+<p>互換性のため、 <code>page-break-before</code> はブラウザーから <code>break-before</code> の別名として扱われます。これにより、 <code>page-break-before</code> を使用しているサイトが引き続き設計通りに動作することを保証します。値のサブセットは次のような別名になります。</p>
+
+<table>
+ <thead>
+ <tr>
+ <th scope="col">page-break-before</th>
+ <th scope="col">break-before</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><code>auto</code></td>
+ <td><code>auto</code></td>
+ </tr>
+ <tr>
+ <td><code>left</code></td>
+ <td><code>left</code></td>
+ </tr>
+ <tr>
+ <td><code>right</code></td>
+ <td><code>right</code></td>
+ </tr>
+ <tr>
+ <td><code>avoid</code></td>
+ <td><code>avoid</code></td>
+ </tr>
+ <tr>
+ <td><code>always</code></td>
+ <td><code>page</code></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<h3 id="Values" name="Values">値</h3>
+
+<dl>
+ <dt><code>auto</code></dt>
+ <dd>初期値です。自動的な改ページが行われます (強制や禁止の機能は持ちません)。</dd>
+ <dt><code>always</code></dt>
+ <dd>要素の前で必ず改ページが行われるように強制します。</dd>
+ <dt><code>avoid</code></dt>
+ <dd>要素の前で改ページされないようにします。</dd>
+ <dt><code>left</code></dt>
+ <dd>要素の前における改ページを強制し、次のページが左ページとして整形されるようにします。</dd>
+ <dt><code>right</code></dt>
+ <dd>要素の前における改ページを強制し、次のページが右ページとして整形されるようにします。</dd>
+ <dt><code>recto</code> {{experimental_inline}}</dt>
+ <dd>左から右に読むページにおいて <code>right</code> と同じ動作をします。右から左に読むページであれば <code>left</code> と同じ働きをします。</dd>
+ <dt><code>verso</code> {{experimental_inline}}</dt>
+ <dd>左から右に読むページにおいて <code>left</code> と同じ動作をします。右から左に読むページであれば <code>right</code> と同じ働きをします。</dd>
+</dl>
+
+<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
+
+<pre class="syntaxbox">{{csssyntax}}</pre>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<pre class="brush: css">/* div の前で改ページされないようにします */
+div.note {
+ page-break-before: avoid;
+}
+</pre>
+
+<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 Logical Properties', '#page', 'recto and verso')}}</td>
+ <td>{{Spec2('CSS Logical Properties')}}</td>
+ <td><code>recto</code> と <code>verso</code> の追加</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS3 Paged Media', '#page-break-before', 'page-break-before')}}</td>
+ <td>{{Spec2('CSS3 Paged Media')}}</td>
+ <td>プロパティが適用される要素を table rows と table row groups に拡張</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS2.1', 'page.html#propdef-page-break-before', 'page-break-before')}}</td>
+ <td>{{Spec2('CSS2.1')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("css.properties.page-break-before")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{cssxref("break-before")}}, {{cssxref("break-after")}}, {{cssxref("break-inside")}}</li>
+ <li>{{cssxref("page-break-after")}}, {{cssxref("page-break-inside")}}</li>
+ <li>{{cssxref("orphans")}}, {{cssxref("widows")}}</li>
+</ul>