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: margin-block-start
slug: Web/CSS/margin-block-start
tags:
- CSS
- Experimental
- Propriété
- Reference
translation_of: Web/CSS/margin-block-start
---
{{CSSRef}}{{SeeCompatTable}}
La propriété **`margin-block-start`** définit la marge logique appliquée au début des éléments en bloc, selon le mode d'écriture, la directionalité et l'orientation du texte. Selon les valeurs utilisées pour {{cssxref("writing-mode")}}, {{cssxref("direction")}}, and {{cssxref("text-orientation")}}, elle peut correspondre à {{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}} ou {{cssxref("margin-left")}}.
{{EmbedInteractiveExample("pages/css/margin-block-start.html")}}
Cette propriété est à rapprocher de {{cssxref("margin-inline-start")}}, {{cssxref("margin-block-end")}} et de {{cssxref("margin-inline-end")}} qui définissent les autres marges appliquées à l'élément.
## Syntaxe
```css
/* Valeurs de longueur */
/* Type <length> */
margin-block-start: 10px; /* Une longueur absolue */
margin-block-start: 1em; /* Une longueur relative à la taille du texte */
margin-block-start: 5%; /* Une largeur relative à la
largeur du bloc englobant */
/* Valeurs avec un mot-clé */
margin-block-start: auto;
/* Valeurs globales */
margin-block-start: inherit;
```
### Valeurs
La propriété `margin-block-start` peut prendre les mêmes valeurs que la propriété {{cssxref("margin-left")}}.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exemple {
writing-mode: vertical-lr;
margin-block-start: 20px;
background-color: #c8c800;
}
```
### HTML
```html
<div>
<p class="exemple">Texte d'exemple</p>
</div>
```
### Résultat
{{EmbedLiveSample("Exemples", 140, 140)}}
## Spécifications
| Spécification | État | Commentaires |
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------ | -------------------- |
| {{SpecName("CSS Logical Properties", "#propdef-margin-block-start", "margin-block-start")}} | {{Spec2("CSS Logical Properties")}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.margin-block-start")}}
## Voir aussi
- Les propriétés physiques correspondantes :
- {{cssxref("margin-top")}},
- {{cssxref("margin-right")}},
- {{cssxref("margin-bottom")}}
- {{cssxref("margin-left")}}
- {{cssxref("writing-mode")}}
- {{cssxref("direction")}}
- {{cssxref("text-orientation")}}
|