I have a small react project and am facing issues with the basic CSS! I have shared the files for reference so that anyone can try on their machines for feedback/answers. Github link
Issue 1: the image does not load. I tried all the things mentioned in internet like checking the path of the file and spelling of file. all seems to be fine. since this will run through server, I have seen the link to be https://localhost:3000/src/assets/img/images.jfif
I have tried the src to be
src="./src/assets/img/images.jfif"
src="src/assets/img/images.jfif"
src="../../../src/assets/img/images.jfif"
src="../../assets/img/images.jfif"
src="File://I:/samples/Portfolio/portfolio2/src/assets/img/images.jfif"
nothing seems to work.
- Strange behaviour when border property is removed! Something strange happens when i remove the border property from .portfolio__intro :) border: 2px solid black; the height of the intro seems to go down so much which I was not able to understand why this happens!
I have tried in Google chrome and Firefox browsers.
Could someone take a look and help me find where I am going wrong and also share knowledge on why this issue happens?