diff options
Diffstat (limited to 'files/de/web/css/min-width/index.html')
-rw-r--r-- | files/de/web/css/min-width/index.html | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/files/de/web/css/min-width/index.html b/files/de/web/css/min-width/index.html new file mode 100644 index 0000000000..085949c9d6 --- /dev/null +++ b/files/de/web/css/min-width/index.html @@ -0,0 +1,101 @@ +--- +title: min-width +slug: Web/CSS/min-width +tags: + - CSS + - CSS Referenz +translation_of: Web/CSS/min-width +--- +<p>{{ CSSRef() }}</p> +<h2 id="Übersicht">Übersicht</h2> +<p>Die <code>min-width</code> Eigenschaft wird verwendet, um die minimale Breite eines Elements festzulegen. Das verhindert, dass der benutzte Wert der <a href="/de/CSS/width" title="de/CSS/width"><code>width</code></a> Eigenschaft nicht kleiner wird als der festgelegte Wert von <code>min-width</code>.</p> +<p>Hinweis: <code>min-width</code> überschreibt sowohl <a href="/de/CSS/width" title="de/CSS/width"><code>width</code></a>, als auch <a href="/de/CSS/max-width" title="de/CSS/max-width"><code>max-width</code></a>.</p> +<ul> + <li>Standardwert: <code>0</code></li> + <li>Anwendbar auf: Blockelemente und ersetzte Elemente, für <table> siehe <a href="/de/CSS/min-width#Browser_Kompatibilit.c3.a4t" title="de/CSS/min-width#Browser_Kompatibilit.c3.a4t">Browser Kompatibilität</a></li> + <li>Vererbbar: Nein</li> + <li>Prozentwerte: beziehen sich auf die Breite des umschließenden Blocks</li> + <li>Medium: visuell</li> + <li>berechneter Wert: die Prozentzahl wie festgelegt oder die absolute Länge</li> +</ul> +<h2 id="Syntax">Syntax</h2> +<pre class="eval">min-width: <Längenangabe> | <Prozentzahl> | -moz-max-content | -moz-min-content | -moz-fit-content | -moz-available | inherit +</pre> +<h3 id="Werte">Werte</h3> +<dl> + <dt> + <Längenangabe></dt> + <dd> + Siehe <a href="/de/CSS/Einheiten#L.c3.a4ngen" title="de/CSS/Einheiten#L.c3.a4ngen">Länge</a> für mögliche Einheiten.</dd> + <dt> + Prozentzahl</dt> + <dd> + Eine <a href="/de/CSS/Einheiten#Prozent" title="de/CSS/Einheiten#Prozent">prozentuale</a> Angabe, die sich auf die Breite des umschließenden Blocks bezieht.</dd> + <dt> + inherit</dt> + <dd> + Der Wert des Elternelements wird geerbt.</dd> +</dl> +<h4 id="Mozilla_Erweiterungen">Mozilla Erweiterungen</h4> +<dl> + <dt> + -moz-max-content</dt> + <dd> + {{ gecko_minversion_inline("1.9") }} Bevorzugte intrinsische Breite.</dd> + <dt> + -moz-min-content</dt> + <dd> + {{ gecko_minversion_inline("1.9") }} Minimale intrinsische Breite.</dd> + <dt> + -moz-available</dt> + <dd> + {{ gecko_minversion_inline("1.9") }} Die Breite des umschließenden Blocks minus horizontalen margin, padding und border Werten.</dd> + <dt> + -moz-fit-content</dt> + <dd> + {{ gecko_minversion_inline("1.9") }} Gleichbedeutend zu <code>-moz-max-content.</code></dd> +</dl> +<h2 id="Beispiele">Beispiele</h2> +<pre>table { min-width: 75%; } +form { min-width: 0; } +</pre> +<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2> +<table class="standard-table"> + <tbody> + <tr> + <th>Browser</th> + <th>ab Version</th> + <th>auf <code><table></code> anwendbar</th> + </tr> + <tr> + <td>Internet Explorer</td> + <td><strong>7.0</strong></td> + <td>nein</td> + </tr> + <tr> + <td>Firefox (Gecko)</td> + <td><strong>1.0</strong> (1.0)</td> + <td>ja</td> + </tr> + <tr> + <td>Opera</td> + <td><strong>4.0</strong></td> + <td>ja</td> + </tr> + <tr> + <td>Safari (WebKit)</td> + <td><strong>2.0.2</strong> (416), vorher fehlerhaft</td> + <td>nein</td> + </tr> + </tbody> +</table> +<h2 id="Spezifikation">Spezifikation</h2> +<ul> + <li><a class="external" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-widths" lang="en">CSS 2.1 Visual formatting #min-width</a></li> +</ul> +<h2 id="Siehe_auch">Siehe auch</h2> +<ul> + <li><a href="/de/CSS/width" title="de/CSS/width"><code>width</code></a>, <a href="/de/CSS/max-width" title="de/CSS/max-width"><code>max-width</code></a></li> + <li><a href="/de/CSS/height" title="de/CSS/height"><code>height</code></a>, <a href="/de/CSS/min-height" title="de/CSS/min-height"><code>min-height</code></a>, <a href="/de/CSS/max-height" title="de/CSS/max-height"><code>max-height</code></a></li> +</ul> +<p>{{ languages( { "en": "en/CSS/min-width", "es": "es/CSS/min-width", "fr": "fr/CSS/min-width", "ja": "ja/CSS/min-width" } ) }}</p> |