aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/border-bottom/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/css/border-bottom/index.html')
-rw-r--r--files/zh-cn/web/css/border-bottom/index.html106
1 files changed, 106 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/border-bottom/index.html b/files/zh-cn/web/css/border-bottom/index.html
new file mode 100644
index 0000000000..28ee04408a
--- /dev/null
+++ b/files/zh-cn/web/css/border-bottom/index.html
@@ -0,0 +1,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>
+
+<pre class="syntaxbox">{{csssyntax}}</pre>
+
+<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>