Learn how to always show scrollbars with CSS.
Add overflow: scroll;
to show both the horizontal and vertical scrollbar:
To only show the vertical scrollbar, or only the horizontal scrollbar, use overflow-y
or overflow-x
:
body {
overflow-y: scroll; /* Show vertical scrollbar */
overflow-x: scroll; /* Show horizontal scrollbar */
}
Try it Yourself »
Tip: To learn more about the overflow
property, go to our CSS Overflow Tutorial or CSS overflow Property Reference.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!