移動(dòng)CSS背景的方法
在CSS中,移動(dòng)背景可以通過設(shè)置背景圖像的background-position
屬性來實(shí)現(xiàn),這個(gè)屬性可以指定背景圖像的起始位置,以及是否重復(fù)、如何重復(fù)等。
如果你想將背景圖像向右移動(dòng)50像素,你可以這樣寫:
body { background-image: url('path/to/your/image.png'); background-position: 50px 0; }
如果你想將背景圖像向下移動(dòng)100像素,你可以這樣寫:
body { background-image: url('path/to/your/image.png'); background-position: 0 100px; }
如果你想將背景圖像同時(shí)向右和向下移動(dòng),你可以這樣寫:
body { background-image: url('path/to/your/image.png'); background-position: 50px 100px; }
如果你想讓背景圖像在移動(dòng)后仍然保持一定的重復(fù),你可以設(shè)置background-repeat
屬性:
body { background-image: url('path/to/your/image.png'); background-position: 50px 100px; background-repeat: repeat; /* or 'repeat-x', 'repeat-y', or 'no-repeat' */ }
background-position
屬性的值可以是具體的像素值,也可以是百分比。background-position: 50% 100%
會(huì)將背景圖像的起始位置移動(dòng)到容器的50%寬度和100%高度處。