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.
- Solution URL: My solution
- Live Site URL: QR Code Component
- SCSS (CSS preprocesser)
- CSS
- HTML5
So I finally learned how to center a <div>
without CSS Flexbox...
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
- Frontend Mentor - @Kemystra