background-clip: border-box|padding-box|content-box;
值 | 描述 |
---|---|
border-box | 背景被裁剪到边框盒。 |
padding-box | 背景被裁剪到内边距框。 |
content-box | 背景被裁剪到内容框。 |
background-origin: padding-box|border-box|content-box;
值 | 描述 |
---|---|
padding-box | 背景图像相对于内边距框来定位。 |
border-box | 背景图像相对于边框盒来定位。 |
content-box | 背景图像相对于内容框来定位。 |
在线测试background-origin:
http://www.w3school.com.cn/tiy/c.asp?f=css_background-origin
在线测试background-clip:
http://www.w3school.com.cn/tiy/t.asp?f=css3_background-clip
(慕课网:十天精通css3中内容)