Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Order Summary Componant

kaysā€¢ 50

@kays20

Desktop design screenshot for the Order summary component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

Liam Tanfieldā€¢ 260

@TanDevv

Posted

Hello, kays20! Good work on this one. I can give you a few suggestions regarding your code. :)

  • Try to refrain from using px units for everything, especially for font sizing. Use rem or em instead. Relative units such as rem and em can adapt to accessibility for when when the users change the browser's font size setting. Px units will always stay the same size as what you set it as.

(You can read this article regarding which units suit your content)

  • Not mandatory but I suggest looking into if you would want to use a CSS reset whenever you start a new project. This can help you once it comes to styling all your fresh HTML, potentially lowering your chance of running into a lovely CSS snag.

(There is a lot to choose, if you feel unsure which to use, my recommendation that I use at the moment ā€” Josh Comeau - Custom CSS Reset)

  • Regarding this part of your code:
@media (min-width: 375px) {
	body {
		background-image: url('../images/pattern-background-desktop.svg');
	}

I would suggest looking into the <picture> tag for when you need to provide different versions of the same image. It saves you having to use a media query.

(For more information on using <picture>, you can read this article by MDN)

  • Lastly, I noticed in line 92 of your CSS stylesheet, you have a margin-top: 20px; that is commented out, did you forget to delete or un-comment it? :)

PS: I would suggest reading through the accessibility report that has been automatically made for you and implementing their fixes into your future projects, especially the errors regarding alt text for <img> elements.

I hope you find these suggestions helpful, overall good effort with this one! šŸ˜

0

@0xabdulkhaliq

Posted

Hello there šŸ‘‹. Congratulations on successfully completing the challenge! šŸŽ‰

  • I have other recommendations regarding your code that I believe will be of great interest to you.

HTML šŸ·ļø:

  • This solution generates accessibility error reports, "All page content should be contained by landmarks" is due to non-semantic markup, which lack landmark for a webpage
  • So fix it by replacing the <div class="box"> element with the semantic element <main> in your index.html file to improve accessibility and organization of your page.
  • What is meant by landmark ?, They used to define major sections of your page instead of relying on generic elements like <div> or <span>
  • They convey the structure of your page. For example, the <main> element should include all content directly related to the page's main idea, so there should only be one per page

HEADINGS āš ļø:

  • And, this solution has also generated accessibility error report due to lack of level-one heading <h1>
  • Every site must want at least one h1 element identifying and describing the main content of the page.
  • An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page.
  • So we want to add a level-one heading to improve accessibility by reading aloud the heading by screen readers, you can achieve this by adding a sr-only class to hide it from visual users (it will be useful for visually impaired users)

.

BG iMAGE šŸ“ø:

  • let me explain, How you can easily apply the background color with the svg they provided.
  • Add the following style rule to your css, and then experience the changes
body {
    background: url(/pattern-background-desktop.svg), #E1E9Ff;
    background-repeat: no-repeat, no-repeat;
}
  • Tip, Don't forget to generate a new screenshot after editing the css file

.

I hope you find this helpful šŸ˜„ Above all, the solution you submitted is great !

Happy coding!

0

Please log in to post a comment

Log in with GitHub
Discord logo

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