From 4a4d2c29e94ff41ab73b3586ff6ab645cfd65dd6 Mon Sep 17 00:00:00 2001 From: avivmu Date: Mon, 29 Jun 2020 19:13:36 +0300 Subject: [PATCH] Indicate uncovered properties are optional The `text-align` property isn't covered in this phase therefore adding it is optional --- learn/tasks/backgrounds/marking.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/learn/tasks/backgrounds/marking.md b/learn/tasks/backgrounds/marking.md index 8202ea36..dc14f47e 100644 --- a/learn/tasks/backgrounds/marking.md +++ b/learn/tasks/backgrounds/marking.md @@ -31,7 +31,7 @@ We also ask them to round only some of the corners on the border, ensuring they There are also some elements which link back to earlier lessons: - They need to add padding to the heading in order that it doesn't overlay the star image - this links back to learning from the earlier Box Model lesson. -- The text with be aligned with the `text-align` property. +- (Optional) The text could be aligned with the `text-align` property, which isn't covereted yet in this phase. ``` .box { @@ -42,7 +42,10 @@ There are also some elements which link back to earlier lessons: h2 { padding: 0 40px; + + /* Optional since not covered yet*/ text-align: center; + background: url(star.png) no-repeat left center, url(star.png) repeat-y right center; }