Design comparison
Solution retrospective
This being my first react project ,I am so happy to have completed it.
What challenges did you encounter, and how did you overcome them?had a challenge posting the project on GitHub pages but eventually saw a YouTube tutorial of how it is done.
What specific areas of your project would you like help with?tried to remove the border around the images but they could not disappear. How does one remove the borders?
Community feedback
- @rupali317Posted 8 months ago
Hello @brian-maker, good attempt on your first React challenge.
To answer your question about the border, changing from
<img>
tag to<div>
will get rid of the border. This quick fix can solve your problem on border. Let me know if it helps.But I must say try to use semantic HTML as much as possible i.e
<img>
instead of<div>
. Moreover, your<img>
is recommended to have a src attribute to include the source of the image instead of doing it likebackground-image: url(...)
in the CSS0
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