2

现在我正在编写一个所有内容都位于页面中心的网站。我希望放置一个小平面图标,使其轨迹从屏幕右侧移开。

但是,图像会继续为图像的其余部分创建水平滚动条。

如何将图像放置在图像的剩余部分仅在调整浏览器大小时可见的位置。

见附件代码:

.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;
}
4

1 回答 1

1

你应该overflow:hidden在你的容器上设置,即.homehover而不是.home-planepath

于 2012-07-20T23:20:24.103 回答