From 2f27b6e6875cccf461239ae28662d8a9cd153164 Mon Sep 17 00:00:00 2001 From: Riyaad Azad Date: Sun, 17 Feb 2019 14:23:36 -0500 Subject: [PATCH] Fix typo in description (#34413) Change "giving" in the Description section to "given" --- .../use-attribute-selectors-to-style-elements.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/use-attribute-selectors-to-style-elements.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/use-attribute-selectors-to-style-elements.english.md index 72cab06a84..293d019dce 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/use-attribute-selectors-to-style-elements.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/use-attribute-selectors-to-style-elements.english.md @@ -7,7 +7,7 @@ videoUrl: 'https://scrimba.com/c/cnpymfJ' ## Description
-You have been giving id or class attributes to elements that you wish to specifically style. These are known as ID and class selectors. There are other CSS Selectors you can use to select custom groups of elements to style. +You have been given id or class attributes to elements that you wish to specifically style. These are known as ID and class selectors. There are other CSS Selectors you can use to select custom groups of elements to style. Let's bring out CatPhotoApp again to practice using CSS Selectors. For this challenge, you will use the [attr=value] attribute selector to style the checkboxes in CatPhotoApp. This selector matches and styles elements with a specific attribute value. For example, the below code changes the margins of all elements with the attribute type and a corresponding value of radio:
[type='radio'] {
  margin: 20px 0px 20px 0px;
}