CSS布局 元素位置偏移

html-css022

CSS布局 元素位置偏移,第1张

是浏览器的默认样式

你在#divtest ul中加上margin:0padding:0

#divtest ul{

margin:0padding:0

position:absolute

height:200px

width:1500px

overflow:hidden

border:#C03 dotted 1px

top:0

left:0

}

首先你要知道要截取的图片在整张图片中的偏移量以及大小。然后:

<div style="width:wwwpxheight:hhhpxbackground:url(图片url) no-repeat -lllpx -tttpx"></div>

其中www是要截取的小图片的宽度,hhh则是高度;

lll是小图片的左边在大图片的偏移量,ttt则是上边的偏移量。

请注意负号不能省略!