diff --git a/seed/challenges/01-responsive-web-design/basic-css.json b/seed/challenges/01-responsive-web-design/basic-css.json
index 335e34eea1..22f2647b99 100644
--- a/seed/challenges/01-responsive-web-design/basic-css.json
+++ b/seed/challenges/01-responsive-web-design/basic-css.json
@@ -2461,6 +2461,93 @@
}
}
},
+ {
+ "id": "58c383d33e2e3259241f3076",
+ "title": "Use Attribute Selectors to Style Elements",
+ "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.",
+ "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 style 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; }
",
+ "",
+ "Using the type attribute selector, try to give the checkboxes in CatPhotoApp a top margin of 10px and a bottom margin of 15px."
+ ],
+ "challengeSeed": [
+ "",
+ "",
+ "",
+ "