固定背景語法
★前言
我回來了可是還是不會常用如果想我的話快點留言跟我要及時通 :P
★注意
˙拿走回應應該很簡單
˙喜歡可以引用不要偷偷帶走當成自己的
★語法
*置中背景 <保留並固定中間的背景>
body{background-image : url(圖的位置);background-repeat : no-repeat;background-attachment : fixed;background-position :50% 50%;}
*右下背景 <保留並固定右下的背景>
body{background-image : url(圖的位置);background-repeat : no-repeat;background-attachment : fixed;background-position :100% 100%;}
*右上背景 <保留並固定右上的背景>
body{background-image : url(圖的位置);background-repeat : no-repeat;background-attachment : fixed;background-position :100% 0%;}
*左上背景 <保留並固定左上的背景>
body{background-image : url(圖的位置);background-repeat : no-repeat;background-attachment : fixed;background-position :0% 0%;}
*左下背景 <保留並固定左下的背景>
body{background-image : url(圖的位置);background-repeat : no-repeat;background-attachment : fixed;background-position :0% 100%;}
*左中背景 <保留並固定左中的背景>
body{background-image : url(圖的位置);background-repeat : no-repeat;background-attachment :
fixed;background-position :0% 50%;}
*重複固定
/*Background image for whole page*/
BODY { background: white url( 圖的網址 ): fixed }