Submitted almost 3 years ago
Responsive Order-Summary-Component using HTML and CSS
@mohit421
Design comparison
SolutionDesign
Solution retrospective
Why hover effect not changes in my css code ?
Community feedback
- @denieldenPosted almost 3 years ago
Hi Mohit, I took some time to look at your solution and you did a great job!
Also I have some tips for improving your code:
- for fix the top image in the background just put more specific background properties to the body:
background: url("../img/pattern-background-desktop.svg") no-repeat top center; background-size: contain; background-color: #e0e8ff;
- add
main
tag and wrap the card for Accessibility - to make it look as close to the design as possible set
width: 20rem;
tocard
class and removeheight
property - remove
right and height
from.main-img
class and setwidth: 100%;
- create a container
div
for the card text withpadding-inline: 2rem
assigned - remove all
margin and padding
fromcard
class - try to use flexbox to the body for center the card. Read here -> best flex guide
- after add
min-heigth: 100vh
to body because Flexbox aligns to the size of the parent container
Overall you did well :)
Hope this help and happy coding!
Marked as helpful1@mohit421Posted almost 3 years ago@denielden Thank you sir, for appreciating me and giving feedback I'll try it.
1@denieldenPosted almost 3 years ago@mohit421 You are welcome! I would really appreciate if you mark my comment as helpful if it helped you, thank you very much :)
Marked as helpful0 - @EmmanuelHexerPosted almost 3 years ago
Great work man, Nicely done
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