Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 700 Bytes

background_clip.md

File metadata and controls

41 lines (33 loc) · 700 Bytes

裁切属性:background-clip

介绍

设置对象的背景向外裁剪的区域

语法

background-clip: border-box|padding-box|content-box;

例:

<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:300px;
height:100px;
padding:50px;
background-color:yellow;
background-clip:content-box;
border:2px solid #92b901;
}
</style>
</head>
<body>

<div>
极客学院极客学院极客学院极客学院极客学院极客学院极客学院极客学院
极客学院极客学院极客学院极客学院极客学院极客学院极客学院极客学院
极客学院极客学院极客学院极客学院极客学院极客学院极客学院极客学院
</div>

</body>
</html>