From dc5c0c7f82407cdf62f32fd333aaec087e258cc1 Mon Sep 17 00:00:00 2001 From: Christoph Deil Date: Wed, 4 Dec 2019 23:32:55 +0100 Subject: [PATCH] Fix minor grammar issue in override-styles-in-subsequent-css.english.md (#37871) --- .../basic-css/override-styles-in-subsequent-css.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/override-styles-in-subsequent-css.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/override-styles-in-subsequent-css.english.md index cf2400566f..9700add398 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/override-styles-in-subsequent-css.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/override-styles-in-subsequent-css.english.md @@ -19,7 +19,7 @@ Apply the blue-text class to your h1 element in additi Applying multiple class attributes to a HTML element is done with a space between them like this: class="class1 class2" Note: It doesn't matter which order the classes are listed in the HTML element. -However, the order of the class declarations in the <style> section are what is important. The second declaration will always take precedence over the first. Because .blue-text is declared second, it overrides the attributes of .pink-text +However, the order of the class declarations in the <style> section is what is important. The second declaration will always take precedence over the first. Because .blue-text is declared second, it overrides the attributes of .pink-text ## Tests