From 4118e39aa1248b8266355954fb7cdae3ece621f1 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 28 Sep 2021 22:36:49 +0900 Subject: border-inline-* プロパティの変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/border-inline-end/index.html | 109 -------------------------- 1 file changed, 109 deletions(-) delete mode 100644 files/ja/web/css/border-inline-end/index.html (limited to 'files/ja/web/css/border-inline-end/index.html') diff --git a/files/ja/web/css/border-inline-end/index.html b/files/ja/web/css/border-inline-end/index.html deleted file mode 100644 index f788b59958..0000000000 --- a/files/ja/web/css/border-inline-end/index.html +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: border-inline-end -slug: Web/CSS/border-inline-end -tags: - - CSS - - CSS Logical Property - - CSS Property - - CSS プロパティ - - CSS 論理的プロパティ - - Experimental - - Reference - - border-inline - - border-inline-end - - border-inline-end-color - - border-inline-end-style - - border-inline-end-width -translation_of: Web/CSS/border-inline-end ---- -
{{CSSRef}}{{SeeCompatTable}}
- -

border-inline-endCSS のプロパティで、個々の論理的なインライン方向の末尾側境界のプロパティ値を、スタイルシート内の単一の場所で設定するための一括指定プロパティです。

- -
{{EmbedInteractiveExample("pages/css/border-inline-end.html")}}
- - - -

構文

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

border-inline-end は1つ以上の {{cssxref("border-inline-end-width")}}, {{cssxref("border-inline-end-style")}}, {{cssxref("border-inline-end-color")}} の値の組み合わせを使用することができます。対応付けられる物理的な境界は、書字方向やテキストの向きによって決まります。これは {{cssxref("border-top")}}, {{cssxref("border-right")}}, {{cssxref("border-bottom")}}, {{cssxref("border-left")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}} で定義された値によって決まります。

- -

関連するプロパティとしては、 {{cssxref("border-block-start")}}, {{cssxref("border-block-end")}}, {{cssxref("border-inline-start")}} が要素の他の境界を定義します。

- -

{{cssinfo}}

- -

- -

border-inline-end は以下の値のうちの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-end: 5px dashed blue;
-}
- -

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

- -

仕様書

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

ブラウザーの互換性

- -

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

- -

関連情報

- - -- cgit v1.2.3-54-g00ecf