当前位置: 代码迷 >> HTML/CSS >> div中的背景图片怎么精确定位
  详细解决方案

div中的背景图片怎么精确定位

热度:148   发布时间:2012-03-12 12:45:33.0
div中的背景图片如何精确定位
如题,如果要设置背景图片从图片的左边10px上方20px处开始显示,该怎么做?

代码
-----------------------------
<style   type= "text/css ">
.dv{
    width:   100px;
    height:   200px;
    background:   url(1.gif);
}
</style>
<body>
<div   class= "dv ">  
</div>
</body>

------解决方案--------------------
五分也要挣上.

.dv{
width: 100px;
height: 200px;
background: url(1.gif);
/* background-position:12%,20% 这样也可以 */
background-position:30px,40px;
}