css中background-origin属性的使用解析
background-orig用来规定元素背景图像的相对定位位置,它有三个属性值
1、border-box
border-box表示元素背景图像相对于border区域开始定位。
代码如下
<!doctype html> <html> <head> <style> {marg:0;paddg:0;} .box{width:430px;height:280px;marg:100px auto;background:url("fengjg.jpg") no-repeat;paddg:5px;border:5px dotted #000;<br data-filtered="filtered">font-size:100px;font-weight:bold;background-orig:border-box;] </style> </head> <body> <div class="box "></div> </body> </html>
效果如下
从上图可以看出,元素的背景图像从边框区域开始定位。
2、paddg-box
paddg-box表示元素背景图像相对于paddg区域开始定位。
代码如下
<!doctype html> <html> <head> <style> {marg:0;paddg:0;} .box{width:430px;height:280px;marg:100px auto;background:url("fengjg.jpg") no-repeat;paddg:5px;border:5px dotted #000;<br data-filtered="filtered">font-size:100px;font-weight:bold;background-orig:paddg-box;] </style> </head> <body> <div class="box "></div> </body> </html>
效果如下
从上图可以看出元素背景图像从paddg区域开始定位。
3、content-box
content-box表示元素背景图像相对于content区域开始定位。
代码如下
<!doctype html> <html> <head> <style> {marg:0;paddg:0;} .box{width:430px;height:280px;marg:100px auto;background:url("fengjg.jpg") no-repeat;paddg:5px;border:5px dotted #000;<br data-filtered="filtered">font-size:100px;font-weight:bold;background-orig:content-box;] </style> </head> <body> <div class="box "></div> </body> </html>
效果如下
从上图可以看出元素的背景图像初始位置从content区域开始定位。
,background-orig属性定义了背景图像的相对定位位置,这个位置可以用background-position来改变,而且元素背景图像的区域不会被限定住,只对元素背景图像起作用。如果元素使用background-attachment属性时,该属性会失效。
background-orig定义和用法
background-orig 属性规定 background-position 属性相对于什么位置来定位。
注释如果背景图像的 background-attachment 属性为 "fixed",则该属性没有效果。
默认值 | paddg-box |
---|---|
继承性 | no |
版本 | CSS3 |
JavaScript 语法 | object.style.backgroundOrig="content-box" |
语法
background-orig: paddg-box|border-box|content-box;
值 | 描述 | |
---|---|---|
paddg-box | 背景图像相对于内边距框来定位。 | |
border-box | 背景图像相对于边框盒来定位。 | |
content-box | 背景图像相对于内容框来定位。 |
以上所述是长沙网络推广给大家介绍的css中background-orig属性的使用解析,希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!