您的位置:首页 > Web前端 > CSS

css3 背景相关的新增属性

2016-09-06 21:11 561 查看
先上代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css3</title>
<style>
div{
background-color: black;
border:dashed 15px green;
padding:30px;
color:white;
font-size: 30px;
font-weight: bold;
margin-top: 10px;
/*background-image: url("img.png");*/
/*background-repeat: no-repeat;*/
}
.div1{
background-clip: border-box;
/*background-origin: border-box;*/
}
.div2{
background-clip: padding-box;
/*background-origin: padding-box;*/
}
.div3{
background-clip: content-box;
/*background-origin: content-box;*/
}

</style>
</head>
<body>
<div class="div1">1</div>
<div class="div2">2</div>
<div class="div3">3</div>
</body>
</html>
这里面用了background-clip属性,border-box:包括边框在内;padding-box:包括padding在内,不包括边框;content-box:只包含了content内容,border和padding都不包括。
background-origin是搭配背景图片使用的,它的使用方式和方法与background-clip相似。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css3