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
Pretty sure a (z index) is what you want to use here.
I updated your fiddle below. Z index allows you to position from front to back.