blob: 3ce41af49e1b51de3d417028b6e9401991bc19ea (
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
|
---
title: min-block-size
slug: Web/CSS/min-block-size
tags:
- CSS
- Experimental
- Propriété
- Reference
translation_of: Web/CSS/min-block-size
---
{{CSSRef}}{{SeeCompatTable}}
La propriété **`min-block-size`** définit la taille minimale horizontale ou verticale d'un élément de bloc (_block_) selon le mode d'écriture utilisé. Cette propriété « logique » correspond à la propriété {{cssxref("min-width")}} ou {{cssxref("min-height")}} selon la valeur utilisée pour {{cssxref("writing-mode")}}.
{{EmbedInteractiveExample("pages/css/min-block-size.html")}}
Si le mode d'écriture est orienté verticalement, `min-block-size` fait référence à la hauteur minimale de l'élément. Sinon, elle fait référence à la largeur minimale de l'élément. to the minimal height of the element, otherwise it relates to the minimal width of the element. La propriété {{cssxref("min-inline-size")}} peut être utilisée pour les éléments en ligne.
## Syntaxe
```css
/* Valeurs de longueur */
/* Type <length> */
min-block-size: 100px;
min-block-size: 5em;
/* Valeurs proportionnelles à la */
/* largeur du bloc englobant */
/* Type <percentage> */
min-block-size: 10%;
/* Valeurs avec un mot-clé */
min-block-size: max-content;
min-block-size: min-content;
min-block-size: fit-content;
min-block-size: fill-available;
/* Valeurs globales */
min-block-size: inherit;
min-block-size: initial;
min-block-size: unset;
```
### Valeurs
La propriété `min-block-size` peut prendre les mêmes valeurs que les propriétés {{cssxref("min-width")}} ou {{cssxref("min-height")}}.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
.exemple {
writing-mode: vertical-rl;
background-color: yellow;
block-size: 5%;
min-block-size: 200px;
}
```
### HTML
```html
<p class="exemple">Texte d'exemple</p>
```
### Résultat
{{EmbedLiveSample("Exemples")}}
## Spécifications
| Spécification | Statut | Commentaires |
| ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------ | -------------------- |
| {{SpecName("CSS Logical Properties", "#propdef-min-block-size", "min-block-size")}} | {{Spec2("CSS Logical Properties")}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.min-block-size")}}
## Voir aussi
- Les propriétés physiques correspondantes
- {{cssxref("min-width")}}
- {{cssxref("min-height")}}
- {{cssxref("writing-mode")}}
|