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.
我正在尝试创建类似于此的内容:http: //www.solidstudio.it/注意地球图像(world_black.png)绝对位于右侧,但即使我的浏览器窗口宽度较小,它也不会创建水平滚动条。怎样才能实现这样的目标?谢谢。
添加overflow-x:hidden到你的身体:
overflow-x:hidden
body { overflow-x: hidden; }
尝试使用溢出属性。
溢出:隐藏;
这应该隐藏指定区域之外的内容而不显示滚动条。