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-bottom/index.html | 106 +++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 files/zh-cn/web/css/border-bottom/index.html (limited to 'files/zh-cn/web/css/border-bottom') diff --git a/files/zh-cn/web/css/border-bottom/index.html b/files/zh-cn/web/css/border-bottom/index.html new file mode 100644 index 0000000000..28ee04408a --- /dev/null +++ b/files/zh-cn/web/css/border-bottom/index.html @@ -0,0 +1,106 @@ +--- +title: border-bottom +slug: Web/CSS/border-bottom +tags: + - CSS + - CSS 属性 + - border + - 参考 +translation_of: Web/CSS/border-bottom +--- +

{{CSSRef}}

+ +

border-bottom 简写属性把下边框的所有属性:{{Cssxref("border-bottom-color")}},{{Cssxref("border-bottom-style")}} 与 {{Cssxref("border-bottom-width")}} 设置到了一个声明中。这些属性描述了元素的下边框样式。

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

与所有的简记属性相同, border-bottom 定义了它所有可以定义的属性,即使他们并没有被显式地定义。它把所有未被显式定义的参数都设置为了默认值,这意味着这些值将被定义为:

+ +
border-bottom-style: dotted;
+border-bottom: thick green;
+ +

它和以下的代码是等价的:

+ +
border-bottom-style: dotted;
+border-bottom: none thick green;
+ + + +

顺便一提,在 border-bottom 之前定义的 {{Cssxref("border-bottom-style")}} 的值因此被忽略了。由于 {{Cssxref("border-bottom-style")}} 并没有默认值,未被定义的 border-style 参数的值将被设置为 none,也就是无底边框。

+ +

语法

+ +
border-bottom: 1px;
+border-bottom: 2px dotted;
+border-bottom: medium dashed blue;
+
+ +

+ +
+
<br-width>
+
见 {{Cssxref("border-bottom-width")}}。
+
<br-style>
+
见 {{Cssxref("border-bottom-style")}}。
+
{{cssxref("<color>")}}
+
见 {{Cssxref("border-bottom-color")}}。
+
+ +

形式化语法

+ +
{{csssyntax}}
+ +

示例

+ +
<div>
+  This box has a border on the bottom side.
+</div>
+ +
div {
+  border-bottom: 4px dashed blue;
+  background-color: gold;
+  height: 100px;
+  width: 100px;
+  font-weight: bold;
+  text-align: center;
+}
+
+ +

{{EmbedLiveSample('Example')}}

+ +

规则

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
规则状态评价
{{ SpecName('CSS3 Backgrounds', '#border-bottom', 'border-bottom') }}{{ Spec2('CSS3 Backgrounds') }}没有直接的改变,即使 {{ cssxref("border-bottom-color") }} 值的修改被确定。
{{ SpecName('CSS2.1', 'box.html#propdef-border-bottom', 'border-bottom') }}{{ Spec2('CSS2.1') }}没有显著的变化。
{{ SpecName('CSS1', '#border-bottom', 'border-bottom') }}{{ Spec2('CSS1') }}初始定义。
+ +

浏览器兼容性

+ + + +

{{Compat("css.properties.border-bottom")}}

-- cgit v1.2.3-54-g00ecf