मैं इस पर थोड़ा अटक गया था और सोचा था कि मैं इस position: sticky
+ फ्लेक्सबॉक्स गोचा को साझा करूंगा:
जब तक मैं अपने विचार को फ्लेक्स बॉक्स कंटेनर में बदल नहीं देता, तब तक मेरा चिपचिपा डिव ठीक काम कर रहा था, और जब यह फ्लेक्सबॉक्स माता-पिता में लिपटा हुआ था तब अचानक डिव चिपचिपा नहीं था।
.flexbox-wrapper {
display: flex;
height: 600px;
}
.regular {
background-color: blue;
}
.sticky {
position: -webkit-sticky;
position: sticky;
top: 0;
background-color: red;
}
<div class="flexbox-wrapper">
<div class="regular">
This is the regular box
</div>
<div class="sticky">
This is the sticky box
</div>
</div>
position: sticky
या सिर्फ एक / कुछ?