--- title: border-inline-style slug: Web/CSS/border-inline-style tags: - CSS - CSS Logical Property - CSS プロパティ - 実験的 - Reference - recipe:css-property browser-compat: css.properties.border-inline-style translation_of: Web/CSS/border-inline-style --- {{CSSRef}} **`border-inline-style`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の論理的なインライン方向の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応付けられます。これは {{cssxref("border-top-style")}} と {{cssxref("border-bottom-style")}}、または {{cssxref("border-left-style")}} と {{cssxref("border-right-style")}} の組み合わせのどちらかに対応し、どちらに対応するかは {{cssxref("writing-mode")}}、{{cssxref("direction")}}、{{cssxref("text-orientation")}} で定義された値によって決まります。 {{EmbedInteractiveExample("pages/css/border-inline-style.html")}} 他の方向の境界スタイルについては {{cssxref("border-block-style")}} で設定することができ、これは {{cssxref("border-block-start-style")}} および {{cssxref("border-block-end-style")}} を設定することができます。 ## 構文 ```css /* <'border-style'> の値 */ border-inline-style: dashed; border-inline-style: dotted; border-inline-style: revert; border-inline-style: groove; ``` ### 値 - `<'border-style'>` - : 境界線のスタイルです。 {{ cssxref("border-style") }} を参照してください。 ## 公式定義 {{CSSInfo}} ## 形式文法 {{csssyntax}}
Example text