From 5c21d6a83a923d68ca6b92c8628a41f56b914565 Mon Sep 17 00:00:00 2001 From: GrantiVersace Date: Tue, 30 Oct 2018 12:47:53 -0500 Subject: [PATCH] Simple grammatical fixes (#23499) --- guide/english/css/id-selector/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/css/id-selector/index.md b/guide/english/css/id-selector/index.md index 5f92d78715..b0c59216e5 100644 --- a/guide/english/css/id-selector/index.md +++ b/guide/english/css/id-selector/index.md @@ -5,7 +5,7 @@ title: ID Selector The CSS ID selector applies styles to a specific html element. The CSS ID selector must match the ID attribute of an HTML element. Unlike classes, which can be applied to multiple elements throughout a site, a specific ID may only be applied to one single element on a site. CSS ID will override CSS Class properties. -To select an element with a specific id, write a hash (#) character, followed by the id of the element. +To select an element with a specific ID, write a hash (#) character, followed by the ID of the element. ### Syntax ```css @@ -19,7 +19,7 @@ div.classname#specified_id { color: green; } ``` ### Note about IDs -ID should be avoided when styling if possible. As it has high specificity and it can be overriden only if you inline styles, or add styles into ```