complete-intro-to-react-v5 icon indicating copy to clipboard operation
complete-intro-to-react-v5 copied to clipboard

first example - h1 text not visible due to css

Open iqzas opened this issue 4 years ago • 1 comments

The Adopt me h1 example in first react code example is not showing the h1 text.. it always shows Adopt me image...

image

iqzas avatar Dec 12 '20 06:12 iqzas

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.

charleskyalo avatar Dec 31 '20 09:12 charleskyalo