From 34eab4569727144926d24ccd7702b371fc97ace6 Mon Sep 17 00:00:00 2001 From: Kevin CHEN <33132228+KevinZonda@users.noreply.github.com> Date: Tue, 28 Sep 2021 15:19:06 +0100 Subject: optimise border-top (#2572) --- files/zh-cn/web/css/border-top/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/css/border-top/index.html b/files/zh-cn/web/css/border-top/index.html index 1bfe5b6579..ff289b6fd7 100644 --- a/files/zh-cn/web/css/border-top/index.html +++ b/files/zh-cn/web/css/border-top/index.html @@ -13,21 +13,21 @@ translation_of: Web/CSS/border-top

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

-

与所有缩写属性(shorthand properties)一样,border-top始终设置它可以设置的所有属性的值,即使未指定它们也是如此。 它将未指定的那些设置为其默认值。 这意味着 ..

+

与所有缩写属性(shorthand properties)一样,border-top始终设置它可以设置的所有属性的值,即使未指定它们也是如此。 它将未指定的那些设置为其默认值。 这意味着

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

和下面的代码效果相同:

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

border-top前指定的{{cssxref("border-top-style")}}将会失效。因为{{cssxref("border-top-style")}} 默认值为none,故没有边界即没有指定border-style

Syntax

-
border-top: 1px;
+
border-top: 1px;
 border-top: 2px dotted;
 border-top: medium dashed green;
@@ -64,7 +64,7 @@ border-top: medium dashed green;
}
-

{{ EmbedLiveSample('Example') }}

+

{{ EmbedLiveSample('Applying_a_top_border') }}

技术说明

-- cgit v1.2.3-54-g00ecf