您的当前位置:首页正文

css3中background-orgin的使用方法(附代码)

2020-11-27 来源:我们爱旅游

本篇文章给大家带来的内容是关于css3中background-orgin的使用方法(附代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

设置元素背景图片的原始起始位置。

语法:

background-origin : border-box | padding-box | content-box;
参数分别表示背景图片是从边框,还是内边距(默认值),或者是内容区域开始显示。

效果如下:

这里写图片描述

需要注意的是,如果背景不是no-repeat,这个属性无效,它会从边框开始显示。

实例代码:

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8">
<title>背景原点</title>
<style type="text/css">
.wrap {
 width:220px; 
 border:20px dashed #000; 
 padding:20px; 
 font-weight:bold; 
 color:#000; 
 background:#ccc url(http://static.php.cn/static/img/logo_index.png) no-repeat; 
 background-origin: content-box; 
 position: relative;
 }
.wrap span { 
 position: absolute; 
 left:0; 
 top:0;
 }
.content {
 height:80px; 
 border:1px solid #333;
 }
</style> 
</head> 
<body>
<div class="wrap">
<span>padding</span>
<div class="content">content</div>
</div>
</body>
</html>