complete-intro-to-react-v5
complete-intro-to-react-v5 copied to clipboard
first example - h1 text not visible due to css
The Adopt me h1 example in first react code example is not showing the h1 text.. it always shows Adopt me image...
https://user-images.githubusercontent.com/40355510/103403022-cf7d3e00-4b5f-11eb-87cf-5fd7ec97b5ef.mp4
@iqzas Your h1 text does not appear due to styles applied by the attached styles sheets.
The specific CSS property styling the h1 tag which causes your text to disappear is the text-indent
property.
The -9999px value pushes the text far left of the browser window. You cannot even see it.