How do I make purple ontop of every div. Z-index is not working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I make purple ontop of every div. Z-index is not working

The green div it hides when under the gray ones how'd I make show ontop of them when I move https://code.sololearn.com/WzJ1YO0c00ve/?ref=app If you click start it will display but when you move it to a gray area it disappears

13th Aug 2023, 10:29 AM
Indiphile Menziwa
Indiphile Menziwa - avatar
4 Answers
+ 3
To do this, you don't need to specify the z-index anywhere. To do this, you just need to move the frog class to the end in CSS. The fact is that every time the code is triggered, the entire html page is updated along with the entire CSS style and it turns out that first the cell you need is painted in purple, and then, for example, in gray.๐Ÿ˜Ž
13th Aug 2023, 1:21 PM
Solo
Solo - avatar
+ 2
Don't worry, many novice programmers forget about what was discussed in the very first lesson, this is that all programs are compiled from top to bottom and from left to right.๐Ÿ˜Ž By the way, you should familiarize yourself with React, it was just created in order to update only the necessary element, and not the entire html page, Increasing the speed of the WEB application at times.
13th Aug 2023, 6:52 PM
Solo
Solo - avatar
0
Lol thanks ๐Ÿ‘
13th Aug 2023, 5:51 PM
Indiphile Menziwa
Indiphile Menziwa - avatar
0
Can't believe I overlooked something so simple
13th Aug 2023, 5:52 PM
Indiphile Menziwa
Indiphile Menziwa - avatar