Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 css 中,是否有规则使 x-scrollbar 始终隐藏,但仅在 y-scrollbar 超出页面时才显示(即仅在需要时显示)?
谢谢
尝试这个:
body{overflow:hidden;overflow-y:auto;}
这将适用于所有元素。所以没有水平滚动条的可能性
*{ overflow-x:hidden; }
对于 y 使用你想要的元素
body{ overflow-y:auto; }
如果你愿意,你可以使用任何其他 div