0
Why circular part is coming up.
Why h1 and background of nav are showing behind circular part. How can I send it behind h1 and nav https://code.sololearn.com/WqBlAcZcCrom/?ref=app
2 Respuestas
+ 1
.main::before{
/* Use z-index */
z-index:-1;
}
It will solve Your Problem
0
When I use
.main::before{
z-index:-1;
}
Circular part becomes invisible.