Frontend Mentor - Stats preview card component solution

This is a solution to the Stats preview card component 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 depending on their device's screen size

Screenshot

Links

My process

Built with

  • HTML5
  • CSS custom properties
  • Bootstrap V5.1.3
  • Bootstrap Grid

What I learned

I've learned more about Bootstrap Grid system, discovered about Gutter classes, and reordering the columns.

<div class="container-fluid">
  <div class="row">

    <div class="col-sm-6 p-0 image-container order-sm-last">
      ...
    </div>

    <div class="col-sm-6 insight-col d-block my-auto">
      <div class="row stats-area gy-4">
        ...
      </div>
    </div>

  </div>
</div>

Useful resources

Author