There is a fixed block, it has a height of 1100 pixels, but if someone comes in and the screen is less than 1100 pixels, then there is no scrolling to the end of the block ... How to solve the problem?
.fixed-bg{ position: fixed; top: 0; left: 0; height: 1100px; width: 500px; color: white; border: 2px solid lime; overflow: auto; } <div class="fixed-bg"> </div>
position: fixed;onposition: absolute;- HamSter