background-clip : border-box | padding-box | content-box | no-clip
相关属性: background-origin | background-size
哎呀,出了点小问题,您可以稍后重试!
未填写内容或格式不正确!
background-clip : border-box | padding-box | content-box | no-clip
相关属性: background-origin | background-size
用来确定背景的裁剪区域。
引擎类型 | Gecko | Webkit | Presto |
---|---|---|---|
background-clip | -moz-background-clip | -webkit-background-clip | -o-background-clip |
类型 | Internet Explorer | Firefox | Chrome | Opera | Safari |
---|---|---|---|---|---|
版本 | (×)IE6 | (√)Firefox 3.0.10 | (√)Chrome 2.0.x | (√)Opera 9.64 | (√)Safari 4 |
(×)IE7 | (√)Firefox 3.5 | ||||
(×)IE8 | |||||
.background_clip{ width:256px; height:180px; padding:20px; border:20px dotted #cad5eb; background:#f0f3f9 url(//image.zhangxinxu.com/image/study/s/s256/mm1.jpg) no-repeat; -moz-background-origin:padding; -webkit-background-origin:padding; -moz-background-clip:padding; -webkit-background-clip:padding; text-shadow:1px 1px white; }
<div class="background_clip">注意背景图片及背景颜色起始的位置</div>