--- title: border-bottom-style slug: Web/CSS/border-bottom-style tags: - CSS - CSS Referenz translation_of: Web/CSS/border-bottom-style ---
{{CSSRef}}
Die border-bottom-style Eigenschaft legt die Rahmenart des unteren Rahmens fest.
{{cssinfo}}
border-bottom-style: {{csssyntax("border-bottom-style")}}
none wird kein Rahmen angezeigt. Das Verhalten unterscheidet sich jedoch beim "Collapsing Border Model" innerhalb von Tabellen.border-collapse: collapse gesetzt wurde, wird auch an den angrenzenden Nachbarzellen kein Rahmen dargestellt.border-bottom-width Angabe groß..beispielEins {
border-bottom-style: dashed; /* gestrichelt */
}
.beispielZwei {
border-bottom-style: groove; /* Einkerbung */
}
.beispielDrei {
border-bottom-style: hidden; /* Collapsing Border Model */
border-collapse: collapse;
}
| Spezifikation | Status | Anmerkung |
|---|---|---|
| {{ SpecName('CSS3 Backgrounds', '#border-bottom-style', 'border-bottom-style') }} | {{ Spec2('CSS3 Backgrounds') }} | keine Änderung |
| {{ SpecName('CSS2.1', 'box.html#border-style-properties', 'border-bottom-style') }} | {{ Spec2('CSS2.1') }} | Standardwert definiert |