Frontend Mentor - Social proof section solution

This is a solution to the Social proof section challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout for the section depending on their device's screen size

Screenshot

Links

My process

Built with

  • HTML
  • CSS
  • Flexbox

What I learned

During this project I learned that CSS allows you to add multiple background images for an element.

.example {
  background-image: url(first_url), url(second_url);
  background-position: right bottom, left top;
  background-repeat: no-repeat, repeat;
}

Useful resources

Author