Design comparison
SolutionDesign
Solution retrospective
What specific areas of your project would you like help with?
overlapping of content on each other
Community feedback
- @AReactDeveloperPosted 3 months ago
Hello, nice job on this challenge! You have a slight problem with the way you included your image files. You used
/
, which works fine on your machine, but I recommend using./
(dot slash) when deploying to GitHub to ensure your styles appear on screen.Here is a brief explanation of the difference between the two types of slashes:
./ (Dot Slash):
- Represents the current directory.
- Used to indicate that a file or directory is located relative to the current working directory.
- Example:
./images/picture.jpg
refers to a file namedpicture.jpg
in theimages
folder inside the current directory.
/ (Forward Slash):
- Represents the root directory in Unix-like systems (e.g., Linux, macOS).
- In a web context or when used in URLs,
/
denotes the root of the domain or the base path of the website. - Example:
/images/picture.jpg
refers to animages
directory at the root of the domain.
Marked as helpful0
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