diff options
author | Siegfried Ehret <SiegfriedEhret@users.noreply.github.com> | 2021-05-17 11:10:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-17 11:10:00 +0200 |
commit | 3067c636382c3b126af4c42977a273007c8e5bb4 (patch) | |
tree | d1615c8975edb0ae7706b96f0617a2297dc7e672 /files/fr/web | |
parent | d6b62eb0aff07446b1088860e6c4706199642ca4 (diff) | |
download | translated-content-3067c636382c3b126af4c42977a273007c8e5bb4.tar.gz translated-content-3067c636382c3b126af4c42977a273007c8e5bb4.tar.bz2 translated-content-3067c636382c3b126af4c42977a273007c8e5bb4.zip |
fix: typo in border-radius api (lang:fr) (#889)
Diffstat (limited to 'files/fr/web')
-rw-r--r-- | files/fr/web/css/border-radius/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/fr/web/css/border-radius/index.html b/files/fr/web/css/border-radius/index.html index aaa3835af0..43a3400e52 100644 --- a/files/fr/web/css/border-radius/index.html +++ b/files/fr/web/css/border-radius/index.html @@ -37,8 +37,8 @@ translation_of: Web/CSS/border-radius /* On utilise le même rayon pour les quatre angles */ border-radius: 10px; -/* 1. coin en haut à gauche et en bas à droite */ -/* 2. puis coin en haut à droit et en bas à gauche */ +/* 1. coin en haut à gauche et en bas à droite */ +/* 2. puis coin en haut à droite et en bas à gauche */ border-radius: 10px 5%; /* 1. coin en haut à gauche */ @@ -58,8 +58,8 @@ border-radius: 1px 0 3px 4px; border-radius: 10px 5% / 20px; /* rayons horizontaux puis <strong>/</strong> puis rayons verticaux */ -/* 1. coin en haut à gauche et en bas à droite */ -/* 2. puis coin en haut à droit et en bas à gauche */ +/* 1. coin en haut à gauche et en bas à droite */ +/* 2. puis coin en haut à droite et en bas à gauche */ border-radius: 10px 5% / 20px 30px; /* rayons horizontaux puis <strong>/</strong> puis rayons verticaux */ |