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 是
style="overflow-x:auto; overflow-y:hidden;"
这很好,但我遇到了图像底部被水平滚动条挡住的问题。有没有办法在图像“下方”添加栏?
谢谢
您可以使用填充移动水平滚动条
#img_parent { overflow-x:auto; overflow-y:hidden; padding-bottom: 10px; }