From 5bd6b4f763b1955f2c082f2e6ed6f058028cbce7 Mon Sep 17 00:00:00 2001 From: salvadb23 <42589931+salvadb23@users.noreply.github.com> Date: Wed, 12 Dec 2018 15:38:24 -0800 Subject: [PATCH] add info on kebab case (#29280) * add info on kebab case * fix: turned addition to separate sentence. --- guide/english/html/css-classes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/html/css-classes/index.md b/guide/english/html/css-classes/index.md index 294a678d00..6bc673a948 100644 --- a/guide/english/html/css-classes/index.md +++ b/guide/english/html/css-classes/index.md @@ -70,7 +70,7 @@ The order of the multiple classes you give to an element is irrelevant. If class ``` In this example, border of the element would be green even if the class "voice" comes second in html. -**Note:** Class names are traditionally all lowercase, with each word in a multi-word class name separated by hyphens (e.g. "super-man"). +**Note:** Class names are traditionally all lowercase, with each word in a multi-word class name separated by hyphens (e.g. "super-man"). This format is also known as kebab-case. You can also combine classes in the same line: ```css