如何:背景图像应保持静态,但其上的网页必须在 asp.net 中向下滚动
Posted
技术标签:
【中文标题】如何:背景图像应保持静态,但其上的网页必须在 asp.net 中向下滚动【英文标题】:how to : Background image should remain static but the webpage on it must scroll down in asp.net 【发布时间】:2012-11-28 19:28:44 【问题描述】:我的网站需要这个。 背景图片应保持静态,但其上的网页必须在 asp.net 中向下滚动
<head runat="server"> <title></title>
<style type="text/css">
body background-image: url('~/saibaba.jpg');
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
#form2 font-weight: 700;
</style>
</head>
这是我的代码仍然无法正常工作
【问题讨论】:
【参考方案1】:body background-attachment: fixed;
【讨论】:
有关放置背景图像的其他方法,请查看 Chris Coyiers 全屏图像
http://css-tricks.com/perfect-full-page-background-image/
它对我有用
【讨论】:
【参考方案3】:试图将您的 CSS 代码与您的主页分开。将所有 CSS 代码放在可以在您的主页中调用的 .css 文件中。试试这个代码 -->>
background-image:url('path_of_file_be_sure');
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center
【讨论】:
以上是关于如何:背景图像应保持静态,但其上的网页必须在 asp.net 中向下滚动的主要内容,如果未能解决你的问题,请参考以下文章
如何将 Google Map 静态图像保持在流畅/响应式尺寸上