Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 1.34 KB

README.md

File metadata and controls

54 lines (38 loc) · 1.34 KB

Frontend Mentor - QR code component solution

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.

Table of contents

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

Overview

Screenshot

image

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties

What I learned

  .container{
    position: absolute;
    transform: translate(-50%,-50%);
    top:50%;
    left:50%;
    background-color: hsl(0, 0%, 100%);
    margin: 0 auto 0 auto;
    width:200px;
    border-radius: 10px;
    padding:10px 5px;
  }

Author