From c4a02833571a0ca5b2ad5dab2b3f5a303b6d6f36 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 14 Sep 2021 20:25:54 -0400 Subject: [PATCH] Changing the order of solution css file As learners are reading the requirement for exercises, they will tend to follow the order of requirements listed when styling elements, so it makes sense for the solution to match the same order. --- foundations/01-css-methods/solution/solution.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundations/01-css-methods/solution/solution.css b/foundations/01-css-methods/solution/solution.css index 2ae67ef..6a4afad 100644 --- a/foundations/01-css-methods/solution/solution.css +++ b/foundations/01-css-methods/solution/solution.css @@ -1,7 +1,7 @@ div { - text-align: center; background-color: red; color: white; font-size: 32px; + text-align: center; font-weight: bold; -} \ No newline at end of file +}