--- title: border-inline slug: Web/CSS/border-inline tags: - CSS - CSS Logical Property - CSS Property - Experimental - Reference translation_of: Web/CSS/border-inline ---
{{CSSRef}}{{SeeCompatTable}}

The border-inlineCSS のプロパティで、論理的なインライン方向のそれぞれの境界プロパティをスタイルシートの1ヶ所で設定する一括指定プロパティです。

border-inline: 1px;
border-inline: 2px dotted;
border-inline: medium dashed blue;

border-inline は {{cssxref("border-inline-width")}}, {{cssxref("border-inline-style")}}, {{cssxref("border-inline-color")}} のうちの1つ以上の値を、インライン方向の先頭側と末尾側の両方に対して一度に設定するために使用することができます。割り当て先の物理的な境界は、要素の書字方向によって決まります。 {{cssxref("border-top")}} と {{cssxref("border-bottom")}}、または {{cssxref("border-right")}} と {{cssxref("border-left")}} のどちらかの組み合わせに対して、 {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} に設定された値に応じて対応付けられます。

他の方向の境界については、 {{cssxref("border-block")}} によって、 {{cssxref("border-block-start")}} と {{cssxref("border-block-end")}} の両方を設定することができます。

{{cssinfo}}

構文

border-inline は以下の値のうちの1つ以上を任意の順序で指定します。

<'border-width'>
境界の幅です。 {{cssxref("border-width")}} を参照してください。
<'border-style'>
境界線のスタイルです。 {{cssxref("border-style")}} を参照してください。
<'color'>
境界の色です。 {{cssxref("color")}} を参照してください。

形式文法

{{csssyntax}}

HTML

<div>
  <p class="exampleText">Example text</p>
</div>

CSS

div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-rl;
  border-inline: 5px dashed blue;
}

{{EmbedLiveSample("Example", 140, 140)}}

仕様書

仕様書 状態 備考
{{SpecName("CSS Logical Properties", "#propdef-border-inline", "border-inline")}} {{Spec2("CSS Logical Properties")}} 初回定義

ブラウザーの互換性

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

関連情報