blob: be094036a4deb7bbb38ea5ef660f983e561fc57a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
---
title: border-inline-end-style
slug: Web/CSS/border-inline-end-style
tags:
- CSS
- CSS 論理的プロパティ
- CSS プロパティ
- 実験的
- リファレンス
- border-inline
- border-inline-end
- border-inline-end-style
- border-inline-style
- recipe:css-property
browser-compat: css.properties.border-inline-end-style
translation_of: Web/CSS/border-inline-end-style
---
{{CSSRef}}
**`border-inline-end-style`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の論理的なインライン方向の終端側の境界のスタイルを定義し、それが要素の書字方向やテキストの方向に応じて物理的な境界のスタイルに対応づけられます。これは {{cssxref("border-top-style")}}、{{cssxref("border-right-style")}}、{{cssxref("border-bottom-style")}}、{{cssxref("border-left-style")}} の何れかに対応し、どれに対応するかは {{cssxref("writing-mode")}}、{{cssxref("direction")}}、{{cssxref("text-orientation")}} で定義された値によって決まります。
{{EmbedInteractiveExample("pages/css/border-inline-end-style.html")}}
## 構文
```css
/* <'border-style'> 値 */
border-inline-end-style: dashed;
border-inline-end-style: dotted;
border-inline-end-style: groove;
/* グローバル値 */
border-inline-end-style: inherit;
border-inline-end-style: initial;
border-inline-end-style: revert;
border-inline-end-style: unset;
```
関連するプロパティとしては、 {{cssxref("border-block-start-style")}}、{{cssxref("border-block-end-style")}}、{{cssxref("border-inline-start-style")}} が要素の他の境界のスタイルを定義します。
### 値
- `<'border-style'>`
- : 境界のスタイルです。 {{cssxref("border-style")}} を参照してください。
## 公式定義
{{CSSInfo}}
### 形式文法
{{csssyntax}}
<h2 id="Examples">例</h2>
### inline-end-style の設定
#### HTML
```html
<div>
<p class="exampleText">Example text</p>
</div>
```
#### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
border: 5px solid blue;
border-inline-end-style: dashed;
}
```
#### 結果
{{EmbedLiveSample("Examples", 140, 140)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- このプロパティは {{cssxref("border-top-style")}}、{{cssxref("border-right-style")}}、{{cssxref("border-bottom-style")}}、{{cssxref("border-left-style")}} のうちの 1 つに対応づけられます
- {{cssxref("writing-mode")}}、{{cssxref("direction")}}、{{cssxref("text-orientation")}}
|