aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/-moz-float-edge/index.html
blob: 7bddc9e0a63a62575c08318c69ac41ad3872be57 (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
---
title: '-moz-float-edge'
slug: Web/CSS/-moz-float-edge
tags:
  - CSS
  - CSS Eigenschaft
  - 'CSS:Mozilla Erweiterungen'
  - Layout
  - NeedsCompatTable
  - NeedsLiveSample
  - Non-standard
translation_of: Web/CSS/-moz-float-edge
---
<div>{{CSSRef}}{{Non-standard_header}}</div>

<h2 id="Übersicht">Übersicht</h2>

<p>Die nicht standardisierte <strong><code>-moz-float-edge</code></strong> <a href="/de/docs/Web/CSS">CSS</a> Eigenschaft gibt an, ob die Höhen- und Breiteneigenschaften des Elements die Dicke des Außenabstands, des Rands oder des Innenabstands beinhalten.</p>

<p>{{cssinfo}}</p>

<h2 id="Syntax">Syntax</h2>

<pre class="brush:css">/* Schlüsselwortwerte */
-moz-float-edge: border-box;
-moz-float-edge: content-box;
-moz-float-edge: margin-box;
-moz-float-edge: padding-box;

/* Globale Werte */
-moz-float-edge: inherit;
-moz-float-edge: initial;
-moz-float-edge: unset;
</pre>

<h3 id="Werte">Werte</h3>

<dl>
 <dt><code>border-box</code></dt>
 <dd>Die Höhen- und Breiteneigenschaften beinhalten den Inhalt, Innenabstand und Rand, aber nicht den Außenabstand.</dd>
 <dt><code>content-box</code></dt>
 <dd>Die Höhen- und Breiteneigenschaften beinhalten den Inhalt, aber weder Innenabstand, Rand, noch Außenabstand.</dd>
 <dt><code>margin-box</code></dt>
 <dd>Die Höhen- und Breiteneigenschaften beinhalten den Inhalt, Innenabstand, Rand und Außenabstand.</dd>
 <dt><code>padding-box</code></dt>
 <dd>Die Höhen- und Breiteneigenschaften beinhalten den Inhalt und Innenabstand, aber nicht den Rand oder Außenabstand.</dd>
</dl>

<h3 id="Formale_Syntax">Formale Syntax</h3>

{{csssyntax}}

<h2 id="Beispiel">Beispiel</h2>

<pre class="brush:css">hr {
  display: block;
  height: 2px;
  border: 1px inset;
  margin: 0.5em auto 0.5em auto;
  color: gray;
  -moz-float-edge: margin-box;
  box-sizing: border-box;
}</pre>

<h2 id="Siehe_auch">Siehe auch</h2>

<p>{{bug(432891)}}</p>