From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/css/border-block-end/index.html | 114 ++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 files/zh-cn/web/css/border-block-end/index.html (limited to 'files/zh-cn/web/css/border-block-end') diff --git a/files/zh-cn/web/css/border-block-end/index.html b/files/zh-cn/web/css/border-block-end/index.html new file mode 100644 index 0000000000..88755b3ea1 --- /dev/null +++ b/files/zh-cn/web/css/border-block-end/index.html @@ -0,0 +1,114 @@ +--- +title: border-block-end +slug: Web/CSS/border-block-end +translation_of: Web/CSS/border-block-end +--- +

{{CSSRef}}{{SeeCompatTable}}

+ +

border-block-end 属性是一个简写属性,用于在样式表中的单个位置设置各个逻辑块结尾边界属性值。

+ +
{{EmbedInteractiveExample("pages/css/border-block-end.html")}}
+ + + +

Syntax

+ +
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}}

+ +

Values

+ +

The border-block-end is specified with one or more of the following, in any order:

+ +
+
<'border-width'>
+
The width of the border. See {{cssxref("border-width")}}.
+
<'border-style'>
+
The line style of the border. See {{cssxref("border-style")}}.
+
<'color'>
+
The color of the border. See {{cssxref("color")}}.
+
+ +

Formal syntax

+ +
{{csssyntax}}
+ +

Example

+ +

HTML Content

+ +
<div>
+  <p class="exampleText">Example text</p>
+</div>
+
+ +

CSS Content

+ +
div {
+  background-color: yellow;
+  width: 120px;
+  height: 120px;
+}
+
+.exampleText {
+  writing-mode: vertical-rl;
+  border-block-end: 5px dashed blue;
+}
+ +

{{EmbedLiveSample("Example", 140, 140)}}

+ +

Specification

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("CSS Logical Properties", "#propdef-border-block-end", "border-block-end")}}{{Spec2("CSS Logical Properties")}}Initial definition
+ +

Browser compatibility

+ + + +

{{Compat("css.properties.border-block-end")}}

+ +

See also

+ + + + -- cgit v1.2.3-54-g00ecf