From 701e6563f750e2d9268d6c26c11eb818cb19df29 Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Tue, 2 Mar 2021 11:02:52 +0900 Subject: [PATCH] Swap odd horizontal-vertical terms in CSS doc Fixes https://github.com/mdn/content/issues/2789 --- files/en-us/web/css/border-color/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/css/border-color/index.html b/files/en-us/web/css/border-color/index.html index ef99c0e76e696a6..ae24b745c323f1f 100644 --- a/files/en-us/web/css/border-color/index.html +++ b/files/en-us/web/css/border-color/index.html @@ -40,10 +40,10 @@

Syntax

/* <color> values */
 border-color: red;
 
-/* horizontal | vertical */
+/* top and bottom | left and right */
 border-color: red #f015ca;
 
-/* top | vertical | bottom */
+/* top | left and right | bottom */
 border-color: red rgb(240,30,50,.7) green;
 
 /* top | right | bottom | left */