使⽤伪元素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: "";
rotate属性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属性调整⾓度实现不同的朝向。这⾥就举了⼀个⽅向的例⼦,其他两个⽅向只要改⼀下⾓度即可。
其他精选博客

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。