# background-clip

background-clip 设置元素的背景(背景图片或颜色)是否延伸到边框、内边距盒子、内容盒子下面。

# # 语法

background-clip: <box>#;

# # 属性值

border-box 背景延伸至边框外沿(但是在边框下层)。

padding-box 背景延伸至内边距(padding)外沿。不会绘制到边框处。

content-box 背景被裁剪至内容区(content box)外沿。

# # 默认值

平台 默认值
app-uvue border-box
web border-box

# # 兼容性

# # uni-app 兼容性

安卓系统版本 安卓 uni-app 安卓 uni-app-x iOS 系统版本 iOS uni-app iOS uni-app-x
background-clip 5.0 3.9+ 9.0 -
padding-box 5.0 x 9.0 x
content-box 5.0 x 9.0 x

# # 参见