Попробуй это.:)
div.blue {
position: -webkit-sticky;
position: sticky;
top: 0;
background-color: blue;
height: 50vh;
color:#fff;
font-size: 20px;
text-align: center;
}
div.dummy {
width: 100%;
height: 500px;
}
div.pink {
position: relative;
top: 0;
background-color: pink;
padding: 50px;
height: 500vh;
font-size: 20px;
}
<div>
<div class="blue">I want to stay 'fixed' until the pink bloc touch me. <br/> Then I can be 'relative'.</div>
<div class="dummy"></div>
</div>
<div class="pink">
О, кстати, не используйте .Используйте
или
.Рад помочь вам.