Assessment Requested for Skill Test: Backgrounds and Borders

Task
I would like to have an assessment on the tasks mentioned in this page:

My Code - Task 1
Source Code: https://github.com/mariaringes/mdnassessments/blob/main/backgrounds-borders/task1.html
Deployed Code: https://mariaringes.github.io/mdnassessments/backgrounds-borders/task1.html

My Code - Task 2
Source Code: https://github.com/mariaringes/mdnassessments/blob/main/backgrounds-borders/task2.html
Deployed Code: https://mariaringes.github.io/mdnassessments/backgrounds-borders/task2.html

Congratulations, @maria_ringes!

Both tasks are correctly solved.
I have just one possible alternative which may be easier to read. When you have multiple backgrounds like in task 2, it could be cleaner to use the background shorthand property. This way the backgrounds are nicely grouped:

background: url(star.png) no-repeat left center,
            url(star.png) repeat-y right center;

But that’s just a matter of taste, i guess. :grin:

Michael

1 Like