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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
---
title: border-top-width
slug: Web/CSS/border-top-width
tags:
- CSS
- Propriété
- Reference
translation_of: Web/CSS/border-top-width
---
{{CSSRef}}
La propriété **`border-top-width`** définit l'épaisseur de la bordure pour le côté haut d'une boîte.
{{EmbedInteractiveExample("pages/css/border-top-width.html")}}
## Syntaxe
```css
/* Une valeur de longueur */
/* Type <length> */
border-top-width: 10em;
border-top-width: 3vmax;
border-top-width: 6px;
/* Valeurs avec un mot-clé */
border-top-width: thin;
border-top-width: medium;
border-top-width: thick;
/* Valeurs globales */
border-top-width: inherit;
border-top-width: initial;
border-top-width: unset;
```
### Valeurs
- `<line-width>`
- : Une valeur de longueur ({{cssxref("<length>")}}) positive ou un mot-clé qui indique l'épaisseur de la bordure pour le haut de la boîte. Si la valeur est un mot-clé, ce doit être l'une des valeurs suivantes :
- `thin` (fin)
- `medium` (intermédiaire)
- `thick` (épais)
La spécification ne précise pas de façon exacte l'épaisseur correspondant à chacun de ces mots-clés (c'est donc à chaque implémentation de choisir). La spécification requiert toutefois que l'inégalité suivante soit respectée `thin ≤ medium ≤ thick` et que ces valeurs soient constantes pour un même document.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
.element1{
border-top: thick solid red;
}
.element2{
border-top: medium solid orange;
}
.element3{
border-top: thin solid green;
}
```
### HTML
```html
<p class="element1">
Une bordure épaisse rouge.
</p>
<p class="element2">
Une bordure moyenne orange.
</p>
<p class="element3">
Et une bordure fine verte.
</p>
```
### Résultat
{{EmbedLiveSample("Exemples","200","300")}}
## Spécifications
| Spécification | État | Commentaires |
| -------------------------------------------------------------------------------------------------------- | ---------------------------------------- | ---------------------------------- |
| {{SpecName('CSS3 Backgrounds', '#the-border-width', 'border-top-width')}} | {{Spec2('CSS3 Backgrounds')}} | Pas de modification significative. |
| {{SpecName('CSS2.1', 'box.html#border-width-properties', 'border-top-width')}} | {{Spec2('CSS2.1')}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.border-top-width")}}
## Voir aussi
- Les autres propriétés liées à la largeur de la bordure :
- {{cssxref("border-left-width")}},
- {{cssxref("border-right-width")}},
- {{cssxref("border-bottom-width")}},
- {{cssxref("border-width")}}
- Les autres propriétés CSS liées à la bordure du côté haut :
- {{cssxref("border")}},
- {{cssxref("border-top")}},
- {{cssxref("border-top-style")}},
- {{cssxref("border-top-color")}}.
|