需要注意的是,如果背景不是no-repeat,这个属性无效,它会从边框开始显示。
实例代码:
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title>背景原点</title>
<styletype="text/css">
.wrap{
width:220px;
border:20pxdashed#000;
padding:20px;
font-weight:bold;
color:#000;
background:#cccurl(http://static.php.cn/static/img/logo_index.png)no-repeat;
background-origin:content-box;
position:relative;
}
.wrapspan{
position:absolute;
left:0;
top:0;
}
.content{
height:80px;
border:1pxsolid#333;
}
</style>
</head>
<body>
<divclass="wrap">
<span>padding</span>
<divclass="content">content</div>
</div>
</body>
</html>


本文转载自中文网
本文转载自中文网
如需转载,请注明文章出处和来源网址:http://www.divcss5.com/css3-style/c55523.shtml