如果网页可滚动,如何修复图像背景

时间:2011-07-07 07:54:06

标签: css ios xhtml uiwebview

我有一个可滚动的网页,我需要修复图像背景,这样当我滚动时它不会重复,我试试这个:

<body style="background:url(background.png);background-attachement: fixed;">

显示图像,但当网页可滚动时会重复显示图像,这会使图像变得难看。

4 个答案:

答案 0 :(得分:2)

您需要添加background-repeat:no-repeat;。另外,根据您的具体情况,您可能需要在规则末尾添加!important修饰符。检查演示:http://jsfiddle.net/bhbAv/。如果这对您不起作用,请不要忘记在最后添加!important

答案 1 :(得分:2)

你应该尽可能在一个声明中做到这一点,例如:

<body style="background:url(background.png) no-repeat fixed;">

答案 2 :(得分:1)

您正在寻找:

background-attachment:fixed;

您输入了:

background-attach_E_ment: fixed;

答案 3 :(得分:1)

是的我同意,可能是背景附件:已修复;会做的。

看看这个:http://www.w3schools.com/css/css_background.asp