Skip to content

thewholesihle/Front-End-Mentor-Challenges

Repository files navigation

Front-End-Mentor-Challenges

All of my solutions to Front End Mentor challenges

Check out the index site for all live sites.

screenshot

screenshot

screenshot

screenshot

What I learnt

You can use background-image with multiple images, like so :

background-image: url("image1.png"), url("image2.png");

You can also use background-position in the order of those images, like so :

/* puts the first image on the top left and the second image on the bottm right */
background-position: top left, bottom right;