使用伪元素after画三角形
画×图标
代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Static Template</title>
<style>
.close {
/*将伪元素转换为内联块状元素,好设置宽高*/
display: inline-block;
width: 14px;
height: 1px;
background: #95835e;
/*旋转角度*/
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
}
.close:after {
content: "";
display: block;
width: 14px;
height: 1px;
background: #95835e;
transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
}
</style>
</head>
<body>
<span class="close"></span>
</body>
</html>
效果
原理就是用span元素和after伪元素画两条直线,利用css3的transform属性分别进行旋转达到交叉的效果。
空心三角箭头
代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Static Template</title>
<style>
.arrowUp:after {
content: "";
display: inline-block;
width: 8px;
height: 8px;
border-top: 1px solid #656565;
border-right: 1px solid #656565;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
</style>
</head>
<body>
<span class="arrowUp"></span>
</body>
</html>
效果
原理就是用after伪元素画了一个矩形,只描绘了上边框和右边框,这样就形成了一个箭头的形状,然后再用transform属性调整角度实现不同的朝向。这里就举了一个方向的例子,其他两个方向只要改一下角度即可。