有没有办法在页面背景上动态调整图像大小?我有一个背景,在Y轴上重复,但如果我使高度尺寸更大,如果页面包含更少的内容,那么背景不适合..任何人都可以帮助吗?感谢
答案 0 :(得分:1)
答案 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
希望这有帮助!