Control CSV CSS z-index.
Hey team!
I'm new here and to coding so ignore any mistakes (just looking for help about this specifically), I'm aiming to solve a problem where I'm importing a CSV and need to control the z-index. I'm finding it super difficult to even see any changes! Anyone able to help?
P.S. removed the rotation axis intentionally, I forgot to put a letter back in before sharing.
1 Reply
if that's the only css on the element, then it's probably because it's not positioned. add
position: relative
to it and see if it does what you're hoping
(z-index is one of the most elusive css concepts, I wrote a blog post/article explaining it and I'm still not 100% sure I understand it correctly )