--- title: border-top slug: Web/CSS/border-top tags: - CSS - CSS 属性 - CSS 边框 translation_of: Web/CSS/border-top ---
{{CSSRef}}

CSS属性 border-top是属性 {{Cssxref("border-top-color")}}, {{Cssxref("border-top-style")}}, 和{{Cssxref("border-top-width")}} 的三者的缩写。这些属性都是在描述一个元素的上方的边框border

{{EmbedInteractiveExample("pages/css/border-top.html")}}

与所有缩写属性(shorthand properties)一样,border-top始终设置它可以设置的所有属性的值,即使未指定它们也是如此。 它将未指定的那些设置为其默认值。 这意味着 ..

border-top-style: dotted;
border-top: thick green;

和下面的代码效果相同:

border-top-style: dotted;
border-top: none thick green;

border-top前指定的{{cssxref("border-top-style")}}将会失效。因为{{cssxref("border-top-style")}} 默认值为none,故没有边界即没有指定border-style

Syntax

border-top: 1px;
border-top: 2px dotted;
border-top: medium dashed green;

这三种属性值的缩写需要按照顺序定义数值,也可以省略其中的一个或者两个。

Values

<br-width> 
请参阅 {{Cssxref("border-top-width")}}.
<br-style> 
请参阅 {{Cssxref("border-top-style")}}.
{{cssxref("<color>")}}
请参阅 {{Cssxref("border-top-color")}}.

Formal syntax

{{csssyntax}}

示例

<div>
  This box has a border on the top side.
</div>
div {
  border-top: 4px dashed blue;
  background-color: gold;
  height: 100px;
  width: 100px;
  font-weight: bold;
  text-align: center;
}

{{ EmbedLiveSample('Example') }}

技术说明

Specification Status Comment
{{SpecName('CSS3 Backgrounds', '#border-top', 'border-top')}} {{Spec2('CSS3 Backgrounds')}} 通过修改{{cssxref("border-top-color")}}的值,没有直接的更改。
{{SpecName('CSS2.1', 'box.html#propdef-border-top', 'border-top')}} {{Spec2('CSS2.1')}} 没有明显改变
{{SpecName('CSS1', '#border-top', 'border-top')}} {{Spec2('CSS1')}} 初次定义

Browser compatibility

{{Compat("css.properties.border-top")}}