+ 3
I have the function at 118. Called it at line 5. For some reason the text is not wrriten on the page. Help
2 Antworten
+ 4
z-index only works on positioned elements (position: absolute, position: relative, position: fixed, or position: sticky).
https://www.w3schools.com/cssref/pr_pos_z-index.asp
#timer{
position:absolute;
color:red;
z-index:4;
}
+ 5
Oh, thanks. It worked.