QR Code using CSS/HTML

Solution retrospective
I'm mainly struggling with deciding how to remove the white space at the top and structure the font the same as the preview (move the font on a third line). Any feedback for how to remove the blank space is appreciated!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @javascriptor1
Hello Madeline0421,
Good work. I have cloned your repo, updated the code then opened a pull request so you can check how I addressed the issues you raised in your comment.
Here are some notes about it:
- how to remove the white space at the top
The white space is a result of setting a fixed height on the container and then displaying it as flex with center alignment on both axes.
By removing the fixed height , and adding the right padding , you can control the white space.
- Structure the font the same as the preview (move the font on a third line).
You have to use padding from right and left to control such behavior. When you add more padding on X axe, the space available to display the text gets reduced which will result in moving to the third line.
I hope these notes will help.
Keep coding and good luck. Rgds, Mohammed
Marked as helpful - P@danielmrz-dev
Hello @Madeline0421!
Your solution looks excelent!
I have just one suggestion:
- In order to make your HTML code more semantic, use
<h1>
for the main title instead of<h2>
. Unlike what most people think, it's not just about the size and weight of the text.
📌 The
<h1>
to<h6>
tags are used to define HTML headings.📌
<h1>
defines the most important heading.📌
<h6>
defines the least important heading.📌 Only use one
<h1>
per page - this should represent the main heading/title for the whole page. And don't skip heading levels - start with<h1>
, then use<h2>
, and so on.This change has little or not effect at all on the project, but it makes your HTML code more semantic, improving SEO optimization as well as the accessibility of your project.
I hope it helps!
Other than that, you did a great job!
Marked as helpful - In order to make your HTML code more semantic, use
- @codster15
excellent ....❤️ let's connect
Join 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