现在我正在编写一个网站,其中所有内容都位于页面的中心。我想要一个小平面图标,它的轨迹在屏幕右侧运行。
但是,图像会不断为图像的其余部分创建水平滚动条。
如何将图像放置在图像的其余部分仅在调整浏览器大小时可见的位置。
参见附件代码:
.home-planepath {
position:absolute;
left:50%;
width:100%;
height:62px;
z-index: 1;
margin-top:442px;
margin-left: -440px;
overflow: hidden;
background:url(images/home-planepath.png) no-repeat;
}
答案 0 :(得分:1)
您应在容器上设置 overflow:hidden
,即 .homehover
,而不是 .home-planepath
< / p>