我的委托人想为她的新网站提供全屏背景。设置并不那么复杂,因为我选择了CSS3方法,并对较旧的IE版本进行了后备。下面是CSS:
html {
/* Fullscreen backgroung image per CSS3 with 'background-size: cover' */
background: url(../images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cove
我想有一个固定的背景图像(大约46k)的网站,工作在我的个人电脑浏览器。
然而,当在我的移动浏览器上滚动时,它花了大约一秒的时间重新绘制背景图像。
有什么办法解决这个问题吗?谢谢
这是我的css:
html, body {
background: url('/assets/img/bg.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
ba
我想知道为什么我的桌面css for 的内部包装不能工作。
基本上,如果将内部包装设置为margin:0 auto; and width: auto;没有问题,但它不在页脚或主div上居中
当我将innerwrap设置为margin:0 auto; and width:960px;时,您会注意到,在稍微调整窗口大小后,页面会显示一个水平滚动条,并且所有内容都被挤压到左侧,白色背景开始变得可见。
有没有办法让它流畅地过渡到下一个平板电脑大小的布局,而不会出现滚动条和内容被挤压?
我正在处理一个破坏了默认页面功能的页面。它是这样工作的:
一旦你第一次开始滚动页面,屏幕的启动排序就会逐渐消失,而背景和启动是固定的,一旦你开始滚动2400px之类的东西,滚动就会开始正常运行。这是我正在研究的解决方案:
<div class="wrapper">
</p>Rest of the content</p>
</div>
<div class="splash" >
<p>Splash-content that has 100% height and width<