blob: e61c0fac717003ce1860088eae703f87955af347 (
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
78
79
80
81
82
83
84
|
---
title: marks
slug: Web/CSS/@page/marks
tags:
- CSS
- CSS Eigenschaft
- Layout
- NeedsBrowserCompatibility
- NeedsExample
- NeedsMobileBrowserCompatibility
- Referenz
- Web
translation_of: Web/CSS/@page/marks
---
<p>{{CSSRef}}</p>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>marks</code> <a href="/de/docs/Web/CSS">CSS</a> Eigenschaft fügt Schneide- und/oder Registermarken zur Darstellung eines Dokuments hinzu. <em>Schneidemarken</em> zeigen an, wo die Seite abgeschnitten werden soll. <em>Registermarken</em> verden zur Ausrichtung von Blättern benutzt.</p>
<p>Schneidemarken und Registermarken werden außerhalb des Seitenrechtecks gedruckt. Um Platz für Schneide- und Registermarken zu haben, müssen die finalen Seiten etwas größer sein als das Seitenrechteck.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="brush:css language-css"><code class="language-css"><span class="comment token">/* Schlüsselwortwerte */</span>
<span class="property token">marks</span><span class="punctuation token">:</span> none<span class="punctuation token">;</span>
<span class="property token">marks</span><span class="punctuation token">:</span> crop<span class="punctuation token">;</span>
<span class="property token">marks</span><span class="punctuation token">:</span> cross<span class="punctuation token">;</span>
<span class="property token">marks</span><span class="punctuation token">:</span> crop cross<span class="punctuation token">;</span></code></pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><code>crop</code></dt>
<dd>Es werden Schneidemarken angezeigt.</dd>
<dt><code>cross</code></dt>
<dd>Es werden Registermarken angezeigt.</dd>
<dt><code>none</code></dt>
<dd>Es werden keine Marken angezeigt.</dd>
</dl>
<h3 id="Formale_Syntax">Formale Syntax</h3>
{{csssyntax}}
<h2 id="Beispiele">Beispiele</h2>
<pre class="brush:css">@page {
marks: crop cross;
}
</pre>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Paged Media', '#marks', 'marks')}}</td>
<td>{{Spec2('CSS3 Paged Media')}}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<p>Diese CSS Eigenschaft wurde ursprünglich in CSS Level 2 vorgeschlagen, wurde jedoch in CSS Level 2 (Revision 1) verworfen.</p>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.at-rules.page.marks")}}
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{Cssxref("@page/bleed", "bleed")}}</li>
</ul>
|