【发布时间】:2017-09-10 04:40:44
【问题描述】:
我正在建立一个网站,我希望在其中固定背景图像。 我已经使用下面的 CSS 在桌面浏览器中实现了这一点,但它不适用于智能手机。 这是背景附件的已知错误:已修复。 我不知道如何解决它。
#page-header{
height: 300px;
background: url("../img/wood.jpg");
background-attachment: fixed;
color: #fff;
border-bottom: 1px #eee solid;
padding-top: 50px;
}
我的 HTML
<header id="page-header">
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center">
<h1 id="h1header">Products</h1>
<p>Local, Organic, Tasty</p>
</div>
</div>
</div>
</header>
你可以在http://maisonbergeret.com/product.html找到我的网站
我的问题是如何保持完全相同的效果。
【问题讨论】:
-
谢谢你的链接,但它没有相同的效果。