aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/border-bottom/index.html
blob: 24bc0d94af8c32d86d1397e067ab56316c91b645 (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
---
title: border-bottom
slug: Web/CSS/border-bottom
tags:
  - CSS
  - CSS 属性
  - border
  - 参考
translation_of: Web/CSS/border-bottom
---
<p>{{CSSRef}}</p>

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

<div>{{EmbedInteractiveExample("pages/css/border-bottom.html")}}</div>



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

<pre class="brush: css">border-bottom-style: dotted;
border-bottom: thick green;</pre>

<p>它和以下的代码是等价的:</p>

<pre class="brush: css">border-bottom-style: dotted;
border-bottom: none thick green;</pre>



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

<h2 id="语法">语法</h2>

<pre class="brush: css no-line-numbers">border-bottom: 1px;
border-bottom: 2px dotted;
border-bottom: medium dashed blue;
</pre>

<h3 id="值"></h3>

<dl>
 <dt><code>&lt;br-width&gt; </code></dt>
 <dd>{{Cssxref("border-bottom-width")}}</dd>
 <dt><code>&lt;br-style&gt; </code></dt>
 <dd>{{Cssxref("border-bottom-style")}}</dd>
 <dt>{{cssxref("&lt;color&gt;")}}</dt>
 <dd>{{Cssxref("border-bottom-color")}}</dd>
</dl>

<h3 id="形式化语法">形式化语法</h3>

{{csssyntax}}

<h2 id="示例">示例</h2>

<pre class="brush: html">&lt;div&gt;
  This box has a border on the bottom side.
&lt;/div&gt;</pre>

<pre class="brush: css">div {
  border-bottom: 4px dashed blue;
  background-color: gold;
  height: 100px;
  width: 100px;
  font-weight: bold;
  text-align: center;
}
</pre>

<p>{{EmbedLiveSample('Example')}}</p>

<h2 id="规则">规则</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">规则</th>
   <th scope="col">状态</th>
   <th scope="col">评价</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSS3 Backgrounds', '#border-bottom', 'border-bottom') }}</td>
   <td>{{ Spec2('CSS3 Backgrounds') }}</td>
   <td>没有直接的改变,即使 {{ cssxref("border-bottom-color") }} 值的修改被确定。</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSS2.1', 'box.html#propdef-border-bottom', 'border-bottom') }}</td>
   <td>{{ Spec2('CSS2.1') }}</td>
   <td>没有显著的变化。</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSS1', '#border-bottom', 'border-bottom') }}</td>
   <td>{{ Spec2('CSS1') }}</td>
   <td>初始定义。</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<div class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</div>

<p>{{Compat("css.properties.border-bottom")}}</p>