blob: cee828acd0e7a0222425a9c89fe70d9d44d03dcc (
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
|
---
title: ':left'
slug: 'Web/CSS/:left'
tags:
- '@page'
- CSS
- CSS ページ化メディア
- Layout
- Pseudo-class
- Reference
- Web
- ウェブ
- 疑似クラス
translation_of: 'Web/CSS/:left'
---
<div>{{ CSSRef() }}</div>
<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>:left</code></strong> <a href="/ja/docs/CSS/Pseudo-classes">疑似クラス</a>は {{cssxref("@page")}} <a href="/ja/docs/Web/CSS/At-rule">@-規則</a> で使われ、印刷文書の左側のページすべてを表します。</p>
<pre class="brush: css no-line-numbers">/* 印刷時に左側のページを選択 */
@page :left {
margin: 2in 3in;
}</pre>
<p>そのページが左側か右側かは、文書の主要な書字方向によって決まります。例えば、最初のページの主な書字方向が左から右であれば {{Cssxref(":right")}} ページになります。書字方向が右から左であれば <code>:left</code> ページになります。</p>
<div class="note">
<p><strong>メモ:</strong> この疑似クラスは、<em>ページボックス</em>の {{ Cssxref("margin") }}, {{ Cssxref("padding") }}, {{ Cssxref("border") }}, {{ Cssxref("background") }} の各プロパティのみを変更するために使用することができます。他のすべてのプロパティは無視され、ページ内の文書コンテンツではなく、ページボックスにのみ影響します。</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
{{csssyntax}}
<h2 id="Example" name="Example">例</h2>
<pre class="brush: css">@page :left {
margin: 2in 3in;
}
</pre>
<h2 id="Specifications" name="Specifications"><span>仕様書</span></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 Paged Media', '#left-right-first', ':left') }}</td>
<td>{{ Spec2('CSS3 Paged Media') }}</td>
<td>変更なし。</td>
</tr>
<tr>
<td>{{ SpecName('CSS2.1', 'page.html#page-selectors', ':left') }}</td>
<td>{{ Spec2('CSS2.1') }}</td>
<td>初回定義。</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力したいのであれば、 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>
<p>{{Compat("css.selectors.left")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{ Cssxref("@page") }}</li>
<li>ページに関する他の疑似クラス: {{ Cssxref(":first") }}, {{ Cssxref(":right") }}</li>
</ul>
|