Html – position sticky is not scrolling full with flexbox
.header, .footer { text-align: center; height: 300px; background: white; } .container { display: flex; width: 600px; margin: 0 auto; background: #fafafa; } .main { flex: 0 0 66.6666%; height: 1500px; } .sidebar { flex: 0 0 33.3333%; background: gray; }…