Skip to content

This is my solution to the Social proof section on Frontend Mentor.

License

Notifications You must be signed in to change notification settings

mehdi-adham/social-proof-section-master

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid

What I learned

I'm worked with flexbox and grid layout.

  .social-proof {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2.5em;
    grid-template-areas:
      "proof-info-item"
      "rated-info-item"
      "users-info-item";
  }