--- title: border-inline slug: Web/CSS/border-inline tags: - CSS - CSS Logical Property - CSS Property - Experimental - Reference translation_of: Web/CSS/border-inline ---
The border-inline
は CSS のプロパティで、論理的なインライン方向のそれぞれの境界プロパティをスタイルシートの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'>
<'border-style'>
<'color'>
{{csssyntax}}
<div> <p class="exampleText">Example text</p> </div>
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")}}