--- title: border-block-style slug: Web/CSS/border-block-style tags: - CSS - CSS Logical Property - CSS Property - CSS プロパティ - CSS 論理的プロパティ - Experimental - Non-standard - Reference - 'recipe:css-property' browser-compat: css.properties.border-block-style translation_of: Web/CSS/border-block-style ---
{{CSSRef}}

border-block-styleCSS のプロパティで、要素の論理的なブロック方向の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応付けられます。これは {{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-block-style.html")}}

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

構文

/* <'border-style'> 値 */
border-block-style: dashed;
border-block-style: dotted;
border-block-style: groove;

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

公式定義

{{CSSInfo}}

形式文法

{{csssyntax}}

縦書きでの破線の境界

HTML

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

CSS

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

.exampleText {
  writing-mode: vertical-lr;
  border: 5px solid blue;
  border-block-style: dashed;
}

結果

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

仕様書

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

ブラウザーの互換性

{{Compat}}

関連情報