1. 程式人生 > >css:控制背景圖片移動 repeat

css:控制背景圖片移動 repeat

以上是repeat的用法

背影圖片的左上角相對當前元素左上角的座標。  右為X軸正半軸, 下為Y軸正半軸  當前元素左上角座標為 0,0  預設圖片的左上角正對當前元素的左上角 圖片左移 10px;  background:url(images/hh.gif) no-repeat -10px 0;}圖片上移 10px;  background:url(images/hh.gif) no-repeat 0 -10px;}圖片右移 10px;  background:url(images/hh.gif) no-repeat 10px 0;} css程式碼: background:url(images/hh.gif) no-repeat -10px -10px;}