Submitted over 1 year ago
Solução de componente de código QR usando Flexbox.
@DrielySantos
Design comparison
SolutionDesign
Community feedback
- @arberlisajPosted over 1 year ago
- You need to replace
<div class="content__qrcode">
with the <main> tag. Semantic HTML is better for website validation and search engine optimization - Each main Header should start with an h1 so the following
<h3>Melhore suas habilidades de front-end criando projetos</h3>
should be replaced with<h1>Melhore suas habilidades de front-end criando projetos</h1>
Marked as helpful1 - You need to replace
- @ecemgoPosted over 1 year ago
Some recommendations regarding your code that could be of interest to you.
HTML
In order to fix the accessibility issues:
- You need to replace
<div class="content__qrcode">
with the<main class="content__qrcode">
tag and<div class="attribution">
with the<footer class="content__qrcode">
tag. You'd better use Semantic HTML, and you can also reach more information about it from Using Semantic HTML Tags Correctly. - Each main content needs to start with an h1 element. Your accessibility report states page should contain a level-one heading. So, you need to use a
<h1>
element in the<main>
tag instead of using<h3>
. You can replace your<h3>Melhore suas habilidades de front-end criando projetos</h3>
element with the<h1>Melhore suas habilidades de front-end criando projetos</h1>
element.
CSS
- If you want to center it easily, you can update
body
in CSS in this way and remove.container
because you don't need it anymore:
body { background-color: hsl(212, 45%, 89%); font-family: 'Outfit', sans-serif; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; }
- you don't need to use margin in
.content__qrcode
anymore because flexbox is used in thebody
.content__qrcode { background-color: hsl(0, 0%, 100%); max-width: 250px; // max-width makes it responsive padding: 20px; border-radius: 10px; }
Hope I am helpful. :)
Marked as helpful0 - You need to replace
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord