--- title: border-top slug: Web/CSS/border-top tags: - CSS - CSS Borders - CSS Property - Reference - 테두리 translation_of: Web/CSS/border-top ---
{{CSSRef}}

border-top CSS 단축 속성은 요소의 위쪽 테두리를 설정합니다. {{cssxref("border-top-width")}}, {{cssxref("border-top-style")}}, {{cssxref("border-top-color")}}의 값을 지정합니다.

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

다른 단축 속성과 마찬가지로, 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을 명시하지 않으면 테두리를 만들지 않습니다.

구문

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

border-top은 한 개에서 세 개의 값을 사용해 지정할 수 있고, 순서는 상관하지 않습니다.

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

형식 구문

{{csssyntax}}

예제

<div>
  위쪽 테두리를 가진 요소입니다.
</div>
div {
  border-top: 4px dashed blue;
  background-color: gold;
  height: 100px;
  width: 100px;
  font-weight: bold;
  text-align: center;
}

{{EmbedLiveSample('예제')}}

명세

Specification Status Comment
{{SpecName('CSS3 Backgrounds', '#border-top', 'border-top')}} {{Spec2('CSS3 Backgrounds')}} No direct changes, though the modification of values for the {{cssxref("border-top-color")}} do apply to it.
{{SpecName('CSS2.1', 'box.html#propdef-border-top', 'border-top')}} {{Spec2('CSS2.1')}} No significant changes.
{{SpecName('CSS1', '#border-top', 'border-top')}} {{Spec2('CSS1')}} Initial definition
{{cssinfo}}

브라우저 호환성

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