Home > Article > Web Front-end > How to Make a Sidebar Scroll Independently Using the Browser's Scrollbar?
How to Scroll Specific DIV Contents Using the Browser's Scrollbar
Introduction
Many websites, like Gizmodo, have a layout where part of the content scrolls with the browser's main scrollbar while other parts remain fixed. While this may seem complex, it can be achieved entirely through CSS.
Solution
To create this effect, we need to consider several aspects:
Implementation
CSS:
html, body, * { padding: 0; margin: 0; } .wrapper { min-width: 500px; max-width: 700px; margin: 0 auto; } #content { margin-right: 260px; /* = sidebar width + some white space */ } #overlay { position: fixed; top: 0; width: 100%; height: 100%; } #overlay .wrapper { height: 100%; } #sidebar { width: 250px; float: right; max-height: 100%; } #sidebar:hover { overflow-y: auto; } #sidebar>* { max-width: 225px; /* leave some space for vertical scrollbar */ }
Markup:
<div class="wrapper"> <div>
Explanation:
Preventing Scrolling on Sidebar Hover
If desired, the sidebar can be prevented from initiating scrolling when hovered over by modifying the HTML structure and CSS:
CSS:
#wrapper { min-width: unset; max-width: unset; height: 100%; } #content { margin-right: 0; } #sidebar { position: fixed; top: 0; }
Markup:
<div>
The above is the detailed content of How to Make a Sidebar Scroll Independently Using the Browser's Scrollbar?. For more information, please follow other related articles on the PHP Chinese website!