1. 前言
由于图片占的空间比较大,且图片越多,越不好管理,所以有些时候,我们可以使用一些简单的标签样式来实现简单的图形标志来替代图片。
2. 实例展示:
三角形示例
示例代码:
<style type="text/css"> .triangle b { border: 5px solid #fff; border-left: 5px solid #353535; margin: 0; font-size: 0; } </style>
方向箭头示例
示例代码:
<style type="text/css"> .mark b{border:solid #D0D0D0;width:6px;height:6px;display:inline-block;} .mark b.lmark{border-width:2px 2px 0 0;transform: rotate(45deg);} </style>
空缺圆
*{ padding:0; margin:0; } div:before{ content:""; width:20px; height:20px; position:absolute; top:-10px; left:40px; border-radius:50%; background-color:white; } div{ position:relative; width:100px; height:100px; margin:100px auto; box-shadow:0 0 2px red; background-color:#ccc; }