aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/border-top/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/css/border-top/index.html')
-rw-r--r--files/zh-cn/web/css/border-top/index.html110
1 files changed, 110 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/border-top/index.html b/files/zh-cn/web/css/border-top/index.html
new file mode 100644
index 0000000000..1555256744
--- /dev/null
+++ b/files/zh-cn/web/css/border-top/index.html
@@ -0,0 +1,110 @@
+---
+title: border-top
+slug: Web/CSS/border-top
+tags:
+ - CSS
+ - CSS 属性
+ - CSS 边框
+translation_of: Web/CSS/border-top
+---
+<div>{{CSSRef}}</div>
+
+<p>CSS属性 <strong>border-top</strong>是属性<font face="consolas, Liberation Mono, courier, monospace"> </font>{{Cssxref("border-top-color")}}, {{Cssxref("border-top-style")}}, 和{{Cssxref("border-top-width")}} 的三者的缩写。这些属性都是在描述一个元素的上方的边框<a href="https://developer.mozilla.org/zh-CN/docs/Web/CSS/border" title="CSS的border属性是一个用于设置各种单独的边界属性的简写属性。border可以用于设置一个或多个以下属性的值: border-width, border-style, border-color。"><code>border</code></a>。</p>
+
+<p>{{EmbedInteractiveExample("pages/css/border-top.html")}}</p>
+
+<p>与所有缩写属性(shorthand properties)一样,<strong>border-top</strong>始终设置它可以设置的所有属性的值,即使未指定它们也是如此。 它将未指定的那些设置为其默认值。 这意味着 ..</p>
+
+<pre>border-top-style: dotted;
+border-top: thick green;</pre>
+
+<p>和下面的代码效果相同:</p>
+
+<pre>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;
+border-top: 2px dotted;
+border-top: medium dashed green;</pre>
+
+<p>这三种属性值的缩写需要按照顺序定义数值,也可以省略其中的一个或者两个。</p>
+
+<h3 id="Values">Values</h3>
+
+<dl>
+ <dt><code>&lt;br-width&gt; </code></dt>
+ <dd>请参阅 {{Cssxref("border-top-width")}}.</dd>
+ <dt><code>&lt;br-style&gt; </code></dt>
+ <dd>请参阅 {{Cssxref("border-top-style")}}.</dd>
+ <dt><code>{{cssxref("&lt;color&gt;")}}</code></dt>
+ <dd>请参阅 {{Cssxref("border-top-color")}}.</dd>
+</dl>
+
+<h3 id="Formal_syntax">Formal syntax</h3>
+
+<pre class="syntaxbox">{{csssyntax}}</pre>
+
+<h2 id="示例">示例</h2>
+
+<pre class="brush: html">&lt;div&gt;
+ This box has a border on the top side.
+&lt;/div&gt;</pre>
+
+<pre class="brush: css">div {
+ border-top: 4px dashed blue;
+ background-color: gold;
+ height: 100px;
+ width: 100px;
+ font-weight: bold;
+ text-align: center;
+}
+</pre>
+
+<p>{{ EmbedLiveSample('Example') }}</p>
+
+<h2 id="Specifications" name="Specifications">技术说明</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSS3 Backgrounds', '#border-top', 'border-top')}}</td>
+ <td>{{Spec2('CSS3 Backgrounds')}}</td>
+ <td>通过修改{{cssxref("border-top-color")}}的值,没有直接的更改。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS2.1', 'box.html#propdef-border-top', 'border-top')}}</td>
+ <td>{{Spec2('CSS2.1')}}</td>
+ <td>没有明显改变</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS1', '#border-top', 'border-top')}}</td>
+ <td>{{Spec2('CSS1')}}</td>
+ <td>初次定义</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">Browser compatibility</h2>
+
+<div>{{Compat("css.properties.border-top")}}</div>
+
+<div></div>
+
+<div class="hidden">
+<p>The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+</div>
+
+
+
+<div id="compat-mobile"></div>