diff options
Diffstat (limited to 'files/zh-cn')
-rw-r--r-- | files/zh-cn/web/css/border-top/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
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 <p>{{EmbedInteractiveExample("pages/css/border-top.html")}}</p> -<p>与所有缩写属性(shorthand properties)一样,<strong>border-top</strong>始终设置它可以设置的所有属性的值,即使未指定它们也是如此。 它将未指定的那些设置为其默认值。 这意味着 ..</p> +<p>与所有缩写属性(shorthand properties)一样,<strong>border-top</strong>始终设置它可以设置的所有属性的值,即使未指定它们也是如此。 它将未指定的那些设置为其默认值。 这意味着</p> -<pre>border-top-style: dotted; +<pre class="brush: css">border-top-style: dotted; border-top: thick green;</pre> <p>和下面的代码效果相同:</p> -<pre>border-top-style: dotted; +<pre class="brush: css">border-top-style: dotted; border-top: none thick green;</pre> <p>在<code>border-top</code>前指定的{{cssxref("border-top-style")}}将会失效。因为{{cssxref("border-top-style")}} 默认值为<code>none</code>,故没有边界即没有指定<code>border-style</code></p> <h2 id="Syntax" name="Syntax">Syntax</h2> -<pre>border-top: 1px; +<pre class="brush: css">border-top: 1px; border-top: 2px dotted; border-top: medium dashed green;</pre> @@ -64,7 +64,7 @@ border-top: medium dashed green;</pre> } </pre> -<p>{{ EmbedLiveSample('Example') }}</p> +<p>{{ EmbedLiveSample('Applying_a_top_border') }}</p> <h2 id="Specifications" name="Specifications">技术说明</h2> |