觉得这个效果不错,就随便写了一下。
效果:http://output.jsbin.com/gerogawiqi/1
思路很简单,添加一个空伪元素,然后进行边框设置,实现折叠的效果。不过看起来还是很好看的。
css部分:
.tianzi{
width:300px;
height: 300px;
background: orange;
position: relative;
margin: 0 auto;
}
.tianzi:before{
content: " ";
position: absolute;
top: 0;
right: 0;
border-style: solid;
border-width:0 16px 16px 0;
border-color:#fff #fff #658E15 #658E15;
-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}
html部分:
<div class="tianzi"></div>
原文地址:http://blog.csdn.net/u011263845/article/details/45622819