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
98
|
---
title: border-inline-start
slug: Web/CSS/border-inline-start
translation_of: Web/CSS/border-inline-start
browser-compat: css.properties.border-inline-start
---
{{CSSRef}}
La propriété **`border-inline-start`** est une propriété raccourcie qui permet de définir la bordure d'un élément pour le côté correspondant au début de l'élément dans le sens de lecture.
{{EmbedInteractiveExample("pages/css/border-inline-start.html")}}
## Propriétés détaillées correspondantes
Cette propriété est une propriété raccourcie pour les propriétés CSS :
- [`border-inline-start-color`](/fr/docs/Web/CSS/border-inline-start-color)
- [`border-inline-start-style`](/fr/docs/Web/CSS/border-inline-start-style)
- [`border-inline-start-width`](/fr/docs/Web/CSS/border-inline-start-width)
## Syntaxe
```css
border-inline-start: 1px;
border-inline-start: 2px dotted;
border-inline-start: medium dashed green;
/* Valeurs globales */
border-inline-start: inherit;
border-inline-start: initial;
border-inline-start: revert;
border-inline-start: unset;
```
Cette propriété logique correspond à l'une des propriété physique équivalente selon le mode d'écriture, la directionnalité et l'orientation du texte. Autrement dit, elle correspond à l'une des propriétés [`border-top`](/fr/docs/Web/CSS/border-top), [`border-right`](/fr/docs/Web/CSS/border-right), [`border-bottom`](/fr/docs/Web/CSS/border-bottom) ou [`border-left`](/fr/docs/Web/CSS/border-left) selon les valeurs utilisées pour [`writing-mode`](/fr/docs/Web/CSS/writing-mode), [`direction`](/fr/docs/Web/CSS/direction) et [`text-orientation`](/fr/docs/Web/CSS/text-orientation).
On peut rapprocher cette propriété des autres propriétés logiques raccourcies définissant les bordures des autres côtés : [`border-block-start`](/fr/docs/Web/CSS/border-block-start), [`border-block-end`](/fr/docs/Web/CSS/border-block-end), [`border-inline-end`](/fr/docs/Web/CSS/border-inline-end).
### Valeurs
Une ou plusieurs valeurs parmi les suivantes, dans n'importe quel ordre :
- `<'border-width'>`
- : La largeur de la bordure, voir [`border-width`](/fr/docs/Web/CSS/border-width).
- `<'border-style'>`
- : Le style utilisé pour la ligne de la bordure sur ce côté, voir [`border-style`](/fr/docs/Web/CSS/border-style).
- `<'color'>`
- : La couleur utilisée pour la bordure sur ce côté, voir [`color`](/fr/docs/Web/CSS/color).
## Définition formelle
{{CSSInfo}}
## Syntaxe formelle
{{csssyntax}}
## Exemples
### HTML
```html
<div>
<p class="exemple">Texte d'exemple</p>
</div>
```
### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exemple {
writing-mode: vertical-rl;
border-inline-start: 5px dashed blue;
}
```
### Résultat
{{EmbedLiveSample('', 140, 140)}}
## Spécifications
{{Specifications}}
## Compatibilité des navigateurs
{{Compat}}
## Voir aussi
- Les propriétés physiques correspondantes : [`border-top`](/fr/docs/Web/CSS/border-top), [`border-right`](/fr/docs/Web/CSS/border-right), [`border-bottom`](/fr/docs/Web/CSS/border-bottom), [`border-left`](/fr/docs/Web/CSS/border-left)
- [`writing-mode`](/fr/docs/Web/CSS/writing-mode), [`direction`](/fr/docs/Web/CSS/direction), [`text-orientation`](/fr/docs/Web/CSS/text-orientation)
|