aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/border-top/index.html
blob: 1bfe5b657994f4dfaaacff7d8c62ad66d2be1115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
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>

{{csssyntax}}

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