aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/flex-wrap
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/web/css/flex-wrap
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/web/css/flex-wrap')
-rw-r--r--files/de/web/css/flex-wrap/index.html81
1 files changed, 81 insertions, 0 deletions
diff --git a/files/de/web/css/flex-wrap/index.html b/files/de/web/css/flex-wrap/index.html
new file mode 100644
index 0000000000..bb2e777f0d
--- /dev/null
+++ b/files/de/web/css/flex-wrap/index.html
@@ -0,0 +1,81 @@
+---
+title: flex-wrap
+slug: Web/CSS/flex-wrap
+tags:
+ - CSS
+ - CSS Eigenschaft
+ - CSS Flexible Boxes
+ - Layout
+ - Referenz
+translation_of: Web/CSS/flex-wrap
+---
+<p>{{CSSRef}}</p>
+
+<h2 id="Übersicht">Übersicht</h2>
+
+<p>Die <code>flex-wrap</code> <a href="/de/docs/Web/CSS" title="CSS">CSS</a> Eigenschaft legt fest, ob die Elemente in einem Flexbox-Container auf einer Linie liegen, oder bei bedarf auf mehrere Zeilen verteilt werden können.</p>
+
+<p>{{cssinfo}}</p>
+
+<p>Siehe die <a href="/de/docs/Web/Guide/CSS/CSS_flexible_Boxen_verwenden" title="/en/CSS/Using_CSS_flexible_boxes">CSS flexible Boxen verwenden</a> für mehr Informationen.</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="twopartsyntaxbox"><a href="/de/docs/Web/CSS/Wertdefinitionssyntax" title="/en-US/docs/CSS/Value_definition_syntax">Formale Syntax</a>: {{csssyntax("flex-wrap")}}
+</pre>
+
+<pre>flex-wrap: nowrap
+flex-wrap: wrap
+flex-wrap: wrap-reverse
+
+flex-wrap: inherit
+</pre>
+
+<h3 id="Werte">Werte</h3>
+
+<p>Die folgenden Werte können verwendet werden:</p>
+
+<dl>
+ <dt><code>nowrap</code></dt>
+ <dd>Die flexiblen Elemente liegen alle in derselben Reihe, auch wenn dazu der Platz fehlt.</dd>
+ <dt><code>wrap</code></dt>
+ <dd>Die flexiblen Elemente können sich wenn nötig innerhalb des Containers in mehrere Zeilen aufteilen (nach unten).</dd>
+ <dt><code>wrap-reverse</code></dt>
+ <dd>Die flexiblen Elemente können sich wenn nötig innerhalb des Containers in mehrere Zeilen aufteilen (nach oben).</dd>
+</dl>
+
+<h2 id="Beispiele">Beispiele</h2>
+
+<pre class="brush:css;highlight:[2]">element {
+  flex-wrap: nowrap;
+}
+</pre>
+
+<h2 id="Spezifikationen">Spezifikationen</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th>Spezifikation</th>
+ <th>Status</th>
+ <th>Anmerkung</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{ SpecName('CSS3 Flexbox', '#flex-wrap', 'flex-wrap') }}</td>
+ <td>{{ Spec2('CSS3 Flexbox') }}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
+
+<p>{{Compat("css.properties.flex-wrap")}}</p>
+
+<h2 id="Siehe_auch">Siehe auch</h2>
+
+<ul>
+ <li><a href="/de/docs/Web/Guide/CSS/CSS_flexible_Boxen_verwenden" title="/en/CSS/Using_CSS_flexible_boxes">CSS flexible Boxen verwenden</a></li>
+</ul>