CSS border-block-end Property Reference
The CSS border-block-end property is a standard property in CSS Logical Properties and Values. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
border-block-end overview
The CSS border-block-end property is a standard property in CSS Logical Properties and Values. Review its formal syntax, computed behavior, and practical declarations.
The property is not inherited by default. Use an explicit global keyword when inheritance is intended.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | <'border-top'> |
| Initial value | border-block-end-width, border-block-end-style, border-block-end-color |
| Applies to | allElements |
| Inherited | No |
| Percentages | no |
| Computed value | border-block-end-width, border-block-end-style, border-block-end-color |
| Animation type | border-block-end-width, border-block-end-style, border-block-end-color |
| Media | visual |
| Specification group | CSS Logical Properties and Values |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set border-block-end. The initial and inherit global keywords remain available even when a property-specific value is preferable.
.reset-example {
border-block-end: initial;
}
.inherit-example {
border-block-end: inherit;
}
@supports (border-block-end: initial) {
.supported {
border-block-end: initial;
}
}