This is a solution to the QR code component challenge on Frontend Mentor.
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- I have learned about universal selector and border box.
- And also max-heigth and min-heigth properties.
Here are some code snippets, see below:
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
}- Resource 1 - This helped me for understanding abour max-height. I really liked this pattern and will use it going forward.
- Resource 2 - This is an amazing article which helped me finally understand CSS box sizing. I'd recommend it to anyone still learning this concept.
- Will be added.
- Will be added.
