This is a solution to the QR code component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
.card{
max-width:24rem;
(...)
}
body{
min-height: 100vh;
display: grid;
place-content: center;
}
p{
margin: 0px 14px 15px;
}
- Paddings! - This helped me with padding syntax.
- Landmark on page content - This is an amazing article which helped me finally understand why do i need main, header, footer etc. in my project. I'd recommend it to anyone how is still writing HTML with only div's.
- Box Shadow Generator - This is an amazing tool for fast making box-shadow.
- Frontend Mentor - @ElPioterro
Huge thanks to @vcarames and @MelvinAguilar from frontendmentor.io! 💎
They commented on someone's/mine solution and it really helped me improve my code. 🥳