本篇文章给大家带来的内容是关于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>
登录后复制
相关推荐:
CSS3中background-origin和background-clip的区别_html/css_WEB-ITnose
css3,background-clip/background-origin的使用场景,通俗讲解_html/css_WEB-ITnose
以上就是css3中background-orgin的使用方法(附代码)的详细内容,更多请关注Work网其它相关文章!