如何設置固定的背景圖像:
body { background-image: url(http://hovertree.com/hvtimg/bjafjc/wpirf7t5.png);background-attachment: fixed;
}
background-attachment 屬性設置背景圖像是否固定或者隨著頁面的其余部分滾動。
以上的寫法 如果在手機裡面會出現兼容問題,怎麼辦??
看下面解決方法:
body:before{
content: ' ';
position: fixed;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url(http://hovertree.com/hvtimg/bjafaj/hm1uwx31.jpg) top center no-repeat;
background-size: cover;
}