纯css实现三道杠小圆点图标
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no" name="viewport" />
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
</head>
<style>
.icon-menu{
display: inline-block;
width: 25px;
height: 3px;
padding: 5px 0;
border-top: 3px solid;
border-bottom: 3px solid;
background-color: currentColor;
background-clip: content-box;
}
.icon-dot{
display: inline-block;
width: 10px;
height: 10px;
padding: 6px;
border: 2px solid;
border-radius: 50%;
background-clip: content-box;
background-color: currentColor;
}
</style>
<body>
<i class="icon-menu"></i>
<i class="icon-dot"></i>
</body>
</html>
示例:

浙公网安备 33010602011771号