Design comparison
SolutionDesign
Solution retrospective
I need help, something is wrong in my code ...plz, check and make it correct.
Community feedback
- @tedikoPosted over 3 years ago
Hello, Krishna! 👋
Good effort on this challenge! Everything works good and responds well. Take a look at:
- Change the
alt
attributes for the.woman-image
,.box
, as they don't add any extra context for screen reader users. Since your images are decorative youralt
text should be provided empty (alt="") so that they can be ignored by assistive technologies. - Your container stretch after
.question
tab is open on resolutions bigger than 1440px - Try not to repeat your HTML code with image for each arrow. Easier way around is to use pseudo element
::before
on your.question
element. Set it toposition: relative
and your pseudo element asposition: absolute
. Put your image usingcontent: url('image.jpg')
.
Good luck with that, have fun coding! 💪
1 - Change the
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