--- title: border-left slug: Web/CSS/border-left tags: - CSS - CSS Borders - CSS Property - Reference - 'recipe:css-shorthand-property' translation_of: Web/CSS/border-left ---
{{CSSRef}}

border-left一括指定CSS のプロパティで、要素の左側の境界のプロパティをすべて設定します。

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

他の一括指定プロパティと同様に、 border-left は、一部の値が指定されていなくても、設定可能なプロパティをすべて設定します。指定されていないプロパティは既定値が設定されます。つまり・・・

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

・・・は、実際には以下と同じです・・・

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

・・・そして、 border-left の前で設定された {{cssxref("border-left-style")}} の値は無視されます。 {{cssxref("border-left-style")}} の既定値は none なので、 border-style の部分の設定は境界線なしとなります。

構成要素のプロパティ

このプロパティは以下の CSS プロパティの一括指定です。

構文

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

一括指定プロパティの3つの値は任意の順序で指定可能で、また、1つまたは2つの値を省略することができます。

<br-width>
{{cssxref("border-left-width")}} を参照してください。
<br-style>
{{cssxref("border-left-style")}} を参照してください。
{{cssxref("<color>")}}
{{cssxref("border-left-color")}} を参照してください。

公式定義

{{CSSInfo}}

形式文法

{{csssyntax}}

左の境界の適用

HTML

<div>
  このボックスには左側に境界線があります。
</div>

CSS

div {
  border-left: 4px dashed blue;
  background-color: gold;
  height: 100px;
  width: 100px;
  font-weight: bold;
  text-align: center;
}

結果

{{EmbedLiveSample('Applying_a_left_border')}}

仕様書

仕様書 状態 備考
{{SpecName('CSS3 Backgrounds', '#propdef-border-left', 'border-left')}} {{Spec2('CSS3 Backgrounds')}} 直接的な変更はないが、 {{cssxref("border-left-color")}} に適用される値が変更された。
{{SpecName('CSS2.1', 'box.html#propdef-border-left', 'border-left')}} {{Spec2('CSS2.1')}} 有意な変更点なし。
{{SpecName('CSS1', '#border-left', 'border-left')}} {{Spec2('CSS1')}} 初回定義

ブラウザーの互換性

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

関連情報