Freezing certain components

That is indeed possible using the “sticky” method.

<pre><span><style>

div[id*='screenScrollView'] > div > :nth-of-type(4) {
position: -webkit-sticky;
position: sticky;
top: 0;
background: white;
z-index: 3;
}
7 Likes