CSS-Eigenschaft: border-bottom-style, Kategorien: Rahmen (allgemein), Box model (CSS 2.1), Backgrounds and Borders (CSS 3)
Rahmendarstellung unten
Bestimmt den Rahmenstyle des unteren Rahmens. Hat keinen Einfluss auf Stärke und Farbe des Rahmens.
Kurzbeschreibung | Werte | Standardwert | Kategorie | Hinweis |
---|---|---|---|---|
Rahmendarstellung unten |
| none |
|
Verwandte Eigenschaften aus der Kategorie: Rahmen (allgemein), Box model (CSS 2.1), Backgrounds and Borders (CSS 3):
- background
- background-attachment
- background-clip
- background-color
- background-image
- background-origin
- background-position
- background-repeat
- background-size
- border
- border-bottom
- border-bottom-color
- border-bottom-left-radius
- border-bottom-right-radius
- Aktuelle Seite: border-bottom-style
- border-bottom-width
- border-collapse
- border-color
- border-image
- border-image-outset
- border-image-repeat
- border-image-slice
- border-image-source
- border-image-width
- border-left
- border-left-color
- border-left-style
- border-left-width
- border-radius
- border-right
- border-right-color
- border-right-style
- border-right-width
- border-spacing
- border-style
- border-top
- border-top-color
- border-top-left-radius
- border-top-right-radius
- border-top-style
- border-top-width
- border-width
- box-shadow
- box-sizing
- margin
- margin-bottom
- margin-left
- margin-right
- margin-top
- outline
- outline-color
- outline-offset
- outline-style
- outline-width
- padding
- padding-bottom
- padding-left
- padding-right
- padding-top
Folgendes ist beim Einsatz von border-bottom-style zu beachten:
- Die Rahmendarstellung unten verhält sich wie die Rahmendarstellung (allgemein). Weitere Details zum Rahmenstyle sind unter border-style beschrieben.
Firefox | Chrome | Internet Explorer | Safari | Opera |
|||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
CSS21 |
|
|
|
|
|
Weiterführende Informationen zu border-bottom-style:
- W3C Spezifikation:
http://www.w3.org/TR/css3-background/#border-bottom-style
- letzte CSS-Eigenschaft (Acc-Key: ALT + SHIFT + z):
border-bottom-right-radius - nächste CSS-Eigenschaft (Acc-Key: ALT + SHIFT + w):
border-bottom-width
Beispiele
HTML:
<div></div>
CSS:
div {
height: 150px;
border: 20px solid #bb0000;
}
/* Generelle Einstellung für alle Beispiele. */
Beispiel Nr. 1 So sieht's aus:
HTML:
<div class="demoEins"></div>
CSS:
div.demoEins {
border-bottom-style: double;
}
Beispiel Nr. 2 So sieht's aus:
HTML:
<div class="demoZwei"></div>
CSS:
div.demoZwei {
border-bottom-style: inset;
}
Beispiel Nr. 3 So sieht's aus:
HTML:
<table>
<tr>
<td>1 1</td>
<td>1 2</td>
<td>1 3</td>
</tr>
<tr>
<td>2 1</td>
<td>2 2</td>
<td>2 3</td>
</tr>
<tr>
<td>3 1</td>
<td>3 2</td>
<td>3 3</td>
</tr>
</table>
CSS:
table {
border: 20px solid #00FF00;
}
td {
border: 4px solid green;
}
table {
border-bottom-style: groove;
}
td {
border-bottom-style: dotted;
padding: 20px;
}
Beispiel Nr. 4 So sieht's aus:
1 1 | 1 2 | 1 3 |
2 1 | 2 2 | 2 3 |
3 1 | 3 2 | 3 3 |
HTML:
<span>ein Text im SPAN</span>
CSS:
span {
border: 15px solid blue;
border-bottom-style: double;
}
Beispiel Nr. 5 So sieht's aus:
ein Text im SPANFehler melden
Diese Referenz ist ein Freizeitprojekt ohne aufwendiges Lektorat oder Vergleichbarem. Von daher lassen sich bei dem Umfang dieser Referenz trotzt größtmöglicher Sorgfalt Fehler nicht vermeiden.
Hilf, die Qualität dieser Seite zu verbessern! Sollte Dir ein Fehler auffallen, sei es in den Erklärungen, Beispielen oder den Informationen zum Browsersupport, seien es orthographische oder grammatikalische, sende eine kurze E-Mail an info@css-wiki.com. Auch Anregungen und Verbesserungsvorschläge sind jeder Zeit Willkommen. Jede E-Mail wird persönlich beantwortet!
Vielen Dank!