--- title: border-block-end slug: Web/CSS/border-block-end translation_of: Web/CSS/border-block-end ---
{{CSSRef}}{{SeeCompatTable}}
border-block-end
属性是一个简写属性,用于在样式表中的单个位置设置各个逻辑块结尾边界属性值。
该交互式示例的源码存储在GitHub存储库中。如果你想参与该项目的开发, 请克隆 https://github.com/mdn/interactive-examples 并向我们发送拉取代码请求
border-block-end: 1px; border-block-end: 2px dotted; border-block-end: medium dashed blue;
border-block-end
can be used to set the values for one or more of {{cssxref("border-block-end-width")}}, {{cssxref("border-block-end-style")}}, and {{cssxref("border-block-end-color")}}. The physical border to which it maps depends on the element's writing mode, directionality, and text orientation. It corresponds to the {{cssxref("border-top")}}, {{cssxref("border-right")}}, {{cssxref("border-bottom")}}, or {{cssxref("border-left")}} property depending on the values defined for {{cssxref("writing-mode")}}, {{cssxref("direction")}}, and {{cssxref("text-orientation")}}.
Related properties are {{cssxref("border-block-start")}}, {{cssxref("border-inline-start")}}, and {{cssxref("border-inline-end")}}, which define the other borders of the element.
{{cssinfo}}
The border-block-end
is specified with one or more of the following, in any order:
<'border-width'>
<'border-style'>
<'color'>
<div> <p class="exampleText">Example text</p> </div>
div { background-color: yellow; width: 120px; height: 120px; } .exampleText { writing-mode: vertical-rl; border-block-end: 5px dashed blue; }
{{EmbedLiveSample("Example", 140, 140)}}
Specification | Status | Comment |
---|---|---|
{{SpecName("CSS Logical Properties", "#propdef-border-block-end", "border-block-end")}} | {{Spec2("CSS Logical Properties")}} | Initial definition |
{{Compat("css.properties.border-block-end")}}