Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. CSS
  3. リファレンス
  4. プロパティ
  5. border-block-width

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

border-block-width

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2021年4月⁩.

border-block-widthCSS のプロパティで、要素の論理的なブロック方向の境界の幅を定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界の幅に対応づけられます。これはborder-top-widthborder-bottom-width、またはborder-left-widthborder-right-width のどちらかに対応し、どちらに対応するかはwriting-mode,direction,text-orientation で定義された値によって決まります。

試してみましょう

border-block-width: thick;writing-mode: horizontal-tb;
border-block-width: thick;writing-mode: vertical-rl;
border-block-width: 4px;writing-mode: horizontal-tb;direction: rtl;
<section>  <div>    これは周囲に境界線があるボックスです。  </div></section>
#example-element {  background-color: palegreen;  color: #000;  border: 0 solid crimson;  padding: 0.75em;  width: 80%;  height: 100px;  unicode-bidi: bidi-override;}

他の方向の境界の幅はborder-inline-width で設定でき、これはborder-inline-start-width およびborder-inline-end-width を設定します。

構文

css
/* <'border-width'> 値 */border-block-width: 5px;border-block-width: thick;/* グローバル値 */border-block-width: inherit;border-block-width: initial;border-block-width: revert;border-block-width: revert-layer;border-block-width: unset;

<'border-width'>

境界の幅です。border-width を参照してください。

公式定義

初期値medium
適用対象すべての要素
継承なし
パーセント値包含ブロックの論理的な幅
計算値絶対的な長さ、境界スタイルがnone またはhidden であれば0
アニメーションの種類計算値の型による

形式文法

border-block-width =
<'border-top-width'>{1,2}

<border-top-width> =
<line-width>

<line-width> =
<length [0,∞]>|
thin|
medium|
thick

縦書きテキストの境界の幅

HTML

html
<div>  <p>テキストの例</p></div>

CSS

css
div {  background-color: yellow;  width: 120px;  height: 120px;}.exampleText {  writing-mode: vertical-lr;  border: 1px solid blue;  border-block-width: 5px;}

結果

仕様書

Specification
CSS Logical Properties and Values Level 1
# propdef-border-block-width

ブラウザーの互換性

関連情報

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp