I have the below CSS in the betas. On a section with an ID. Note the z-index: -1.
#section2 > .x-row::after { content: ‘’; background: #F3E500;transform-origin: bottom left;transform: rotate(40deg);width: 150vw;height: 150vw;position: absolute;left: calc(50% - 260px);bottom: 50%;z-index: -1;}
The section has an ID, there is a background colour on the section and all z-index’s are set to auto. The CSS spans across multiple sections. All those sections also have a background colour.
This was working in the previous betas. In Beta 4 this stops working and the CSS ends up behind the backgrounds. I had to change my CSS to have a positive z-index. This meant I also had to manually adjust various z-index’s of other elements.
I’ve only done this playing around in the beta’s so not sure if it was broken before or broken now but it seems there is a difference beta this beta and the last one in terms of how this works.