I try to do a simple think but I am stuck. I have a div "scrolling" with a fixed position. When I scroll the page, I want that the div "scrolling" goes behind all other div below.
I put an exemple in : exemple jsfiddle
.scrolling{
top: 230px;
background-color:lightblue;
margin:auto;
width:100%;
text-align:center;
position:fixed;
}
Thank you for your help
To answer your question, you need to understand concepts like
z-index
and/or how the stacking order works. There are great articles that will explain z-index, but one in particular I really enjoy is What no one told you about z-index.A snippet from the referenced article above:
Interestingly enough, there's a CSS3 property that does something similar. You can address your issue, without the need of explicitly applying a z-index, by using
transform
.For example, if we apply
transform: translateX(0)
to your JSFiddle, you'll see that the gray div now sits above your text. Here's an updated fiddle:https://jsfiddle.net/gh94Lbad/
The reason
transform
works (by modifying the stacking context) is explained in the spec:Edit: As pointed out by @TemaniAfif, it's probably better to explain how this works by explaining the
paint order
of your elements: