<!DOCTYPE html>
<html>
<head>
<title>练习--背景定位</title>
<style type="text/css">
.box{
width:331px;
border:1px solid green;
height:311px;
background:url(images/bottom-left.gif) no-repeat left bottom;
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>
我设置定位在垂直的底部,绿色框背景图不是应该在底部吗?为什么将这张图片换成别的就可以处于底部了??
是透明的问题,谢谢。
Firebug 调试,看看!!!