+ 2
How can I place an element to the background?
How can I place an element to the background?
4 Respostas
+ 3
I'm guessing you want to create something like a background image or something similar.
In your CSS code add:
z-index: -1;
position: fixed; /* Prevent the element from moving */
To the element.
+ 3
Just put in css z-index: -1;
+ 2
Edwin Pratt i will try 😁thnx
+ 2
Nico Ruder i think this is all I need thanks