border绘制尖角图形

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>border</title>
<style>
.div{width:200px;height:200px;background:#396;margin-left:300px;position:relative;}
.div:after {
width: 0px;
height: 0px;
content: '';
border-style: solid;
border-width: 0px 0px 60px 86px;
border-color: #ed2 #0f0 #396 transparent;
position: absolute;
left: -86px;
top: 80px;
}
.div:before {
width: 0px;
height: 0px;
content: '';
border-style: solid;
border-width: 0px 0px 32px 86px;
border-color: #ed2 #0f0 #fff transparent;
position: absolute;
left: -86px;
top: 108px;
z-index: 3;
}
</style>
</head>
<body>
<div class="div"></div>
</body>
</html>

浏览器效果图:

 

posted @ 2019-01-11 10:37  金牛座的女孩  阅读(328)  评论(0编辑  收藏  举报