保持网站背景不变

时间:2011-07-18 15:08:44

标签: language-agnostic

http://twitter.com/中,滚动时,背景图像保持不变,但只有中心的主要内容滚动。如何实现这一功能?感谢。

4 个答案:

答案 0 :(得分:1)

使用背景图片并设置background-attachment:fixed;

在这里查看css背景属性:http://www.w3schools.com/css/css_background.asp

答案 1 :(得分:1)

使用CSS属性background-attachment: fixed;

请参阅http://www.symbols.net/webhelp/backgroundnoscroll/

答案 2 :(得分:1)

  1. 如果使用“Frontpage”,则在插入背景图像时,也请单击“Watermark”。这在HTML中编码以使背景固定。

  2. 或者......在您的背景图片HTML之后插入:

  3. background="fixed"

    bg properites="fixed"

    <body background="xxx.jpg" behavior="fixed">
    

    您也可以使用CSS

    <style type="text/css">
    body {
    background-color:#ffffff; 
    background-image:url(URL_OF_YOUR_IMAGE); 
    background-attachment:fixed;
    }
    </style>
    

    Refrence:link

答案 3 :(得分:0)

使用CSS将您的BODY标记的背景定位在HTML中。

body
{
background-image:url('still_image.png');
background-repeat:no-repeat;
background-position:right top;
}