From 149319bb8c7b1394a443f0877c3460cd362aa815 Mon Sep 17 00:00:00 2001 From: julieng Date: Fri, 17 Sep 2021 20:58:15 +0200 Subject: move *.html to *.md --- files/fr/web/css/border-top-width/index.html | 134 --------------------------- files/fr/web/css/border-top-width/index.md | 134 +++++++++++++++++++++++++++ 2 files changed, 134 insertions(+), 134 deletions(-) delete mode 100644 files/fr/web/css/border-top-width/index.html create mode 100644 files/fr/web/css/border-top-width/index.md (limited to 'files/fr/web/css/border-top-width') diff --git a/files/fr/web/css/border-top-width/index.html b/files/fr/web/css/border-top-width/index.html deleted file mode 100644 index e96b5ef89f..0000000000 --- a/files/fr/web/css/border-top-width/index.html +++ /dev/null @@ -1,134 +0,0 @@ ---- -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

- -
/* 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

- -
.element1{
-	border-top: thick solid red;
-}
-.element2{
-	border-top: medium solid orange;
-}
-.element3{
-	border-top: thin solid green;
-}
-
- -

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ÉtatCommentaires
{{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

- - diff --git a/files/fr/web/css/border-top-width/index.md b/files/fr/web/css/border-top-width/index.md new file mode 100644 index 0000000000..e96b5ef89f --- /dev/null +++ b/files/fr/web/css/border-top-width/index.md @@ -0,0 +1,134 @@ +--- +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

+ +
/* 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

+ +
.element1{
+	border-top: thick solid red;
+}
+.element2{
+	border-top: medium solid orange;
+}
+.element3{
+	border-top: thin solid green;
+}
+
+ +

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ÉtatCommentaires
{{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

+ + -- cgit v1.2.3-54-g00ecf