【发布时间】:2017-01-23 18:20:10
【问题描述】:
我第一次使用剪辑路径,我需要在这个形状中添加一个边框。任何人都可以解释我如何做到这一点?
.image-center {
width: 300px;
height: 300px;
margin: 0 auto;
}
.shape {
width: 300px;
height: 300px;
-webkit-clip-path: polygon(15% 0, 70% 0, 100% 50%, 70% 100%, 15% 100%, 0 70%, 20% 50%, 0% 30%);
clip-path: polygon(15% 0, 70% 0, 100% 50%, 70% 100%, 15% 100%, 0 70%, 20% 50%, 0% 30%);
}
img {
width: 300px;
height: 300px;
}
<div class="image-center">
<div class="shape">
<img src="http://www.businessadvisorsmd.com/wp-content/uploads/2016/01/masteraccounting-1.jpg" />
</div>
</div>
【问题讨论】:
-
重复this SO问题