/blog-preview-card

Frontend Mentor Challenge

Primary LanguageCSS

Frontend Mentor - Blog preview card solution

This is a solution to the Blog preview card challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox

What I learned

I have learned that you can develop for responsivity without using media queries. I solved this with CSS techniques like calc() and clamp().

.responsive-font-size {
  font-size: clamp(20px, 5vw, 24px);
}

Author