没有水平滚动条的大背景图像

时间:2014-03-27 09:38:22

标签: css background position

我想重现Apple大背景效果(apple.com) 背景虽然大于浏览器,但不会显示水平滚动条,当我们使浏览器小于1024px时,背景会被锁定在左侧,采用普通1024px宽网站的正常行为,而在线解决方案只提供始终居中的背景。 有人知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

从CSS设置背景,

以下html设置背景而不显示水平滚动条

html { 
background: url(images/bg.jpg) no-repeat center center fixed;     
background-size: cover;
}