From 88eb6f003146181f911455496b363f8ce5124c76 Mon Sep 17 00:00:00 2001 From: Nick Trahan <43890781+Nick-Trahan@users.noreply.github.com> Date: Fri, 7 Dec 2018 08:41:36 -0600 Subject: [PATCH] Very small text correction (#24699) --- guide/english/css/class-selector/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/css/class-selector/index.md b/guide/english/css/class-selector/index.md index 8bae94276f..d307f7a306 100644 --- a/guide/english/css/class-selector/index.md +++ b/guide/english/css/class-selector/index.md @@ -4,7 +4,7 @@ title: Class Selector ## Class Selector A Class Selector is used in a CSS file to apply style to the HTML elements with the corresponding class name. In HTML, you can set the class name for any element by adding a `class` attribute. -To select elements with a specific class, we use a (.) named as period character, with the name of the class. +To select elements with a specific class, we use a full stop `.` or "period" character, with the name of the class. For example .center {