Design comparison
SolutionDesign
Solution retrospective
thanks
Community feedback
- @RioCantrePosted over 2 years ago
Hello there! Nice job in completing this challenge. Regarding your solution, I would like to take notes of the following…
- Remove this line in the code...
Improve your front-end skills by building projects Scan the QR code to visit Frontend Mentor and take your coding skills to the next level
- Instead of
div
, alternatively wrap the whole content with semantic tags, for HTML structures, refer it with this one Semantics. This line<div class="all">
can be wrap withmain
tag - Add the inline style which is
bgcolor="#D5E1EF"
in the CSS file onbody
ruleset - Remove
margin: 250px;
,margin-top: 60px;
,position: relative;
anddisplay: inline-block;
in the.all
ruleset and adddisplay: flex;
,justify-content: center;
,align-items: center;
andmargin: 7rem auto;
- Remove
border-left: 14px solid transparent;
andborder-right: 17px solid transparent;
in the.txt1
ruleset and addpadding: 0 1rem;
- Remove
border-left: 22px solid transparent;
andborder-right: 13px solid transparent;
in the.txt2
ruleset and addpadding: 0 1.5rem;
In the brighter side...
- The project is responsive and utilized the details based on the original design
- Good job in using a separate file for the CSS in styling, the composition is done well
Above all, the project is done well. Keep up the good work! Cheers!
0 - @besttlookkPosted over 2 years ago
Hi, Remove the HTML which you did not use. Also center the content w.r.t screen. You can do it by using below code:
body{ display:flex; align-itmes:center; justify-content: center; min-height:100vh }
Rest look okay.
Good Luck, #happyCoding
0
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