您的当前位置:首页正文

CSS实现书签效果实例

2020-11-27 来源:钮旅网
这篇文章通过纯CSS代码写了个书签效果,实现后的书签效果很漂亮,文中给出了完整的示例代码,实现的代码也很简单,很方便大家理解和学习,有需要的朋友们可以参考学习,下面来一起学习学习吧。

实现的效果图如下:

CSS实现书签效果实例

示例代码如下:

<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <title>border制作书签(图形)</title>
 <style>
 .p2:before { /*做一个书签效果*/
 position: absolute; /*必须*/
 top: 50px;
 left: 20px;
 z-index: 1;
 height: 0;
 padding-right: 10px;
 font-weight: bold;
 line-height: 0;
 color: #000;
 border: 15px solid #ee7600;
 border-right-color: transparent; /*右边框透明,变成空缺的角*/
 content: '书签';
 box-shadow: 0 5px 5px -5px #000;
 }
 .p2:after { /*书签的夹角*/
 content: '';
 position: absolute;
 top: 80px;
 left: 20px;
 border: 4px solid #89540c;
 border-left-color: transparent;
 border-bottom-color: transparent;
 }
 </style>
 </head>
 <body>
 <p class="p1"></p>
 <p class="p2"></p>
 </body>
</html>

总结

显示全文