在css的图象背景

时间:2010-11-20 07:03:08

标签: css

有没有办法在页面背景上动态调整图像大小?我有一个背景,在Y轴上重复,但如果我使高度尺寸更大,如果页面包含更少的内容,那么背景不适合..任何人都可以帮助吗?感谢

3 个答案:

答案 0 :(得分:1)

简短回答:不。

答案很长:http://css-tricks.com/how-to-resizeable-background-image/

答案 1 :(得分:-1)

确实你想要的东西还不可能(也许在CSS3中?)。我认为最好的方法是使用CSS后台附件。

body {
 background-attachment: fixed; /*background doesn't scroll out of the screen */
 background-position: top center; /* background's center is in the center of the window */
}

答案 2 :(得分:-1)

有CSS3描述符可以做到这一点:

#my-id {background-size: 100% 100%;}

http://webdesign.about.com/od/styleproperties/p/blspbgsize.htm

希望这有帮助!