css代码画三角形箭头(上下左右)

三角形箭头是我们前端比较常用的图形,那么如何用css代码绘制不同方向的三角形箭头呢?下面编程教程网小编带大家了解一下实现代码!

向下三角形箭头

span::after{
	content: '';
	display: inline-block;
	width: 0px;
	height: 0px;
	border: 6px solid #fff; //白色
	border-top-color: #fff;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
}

向上三角形箭头

span::after{
	content: '';
	display: inline-block;
	width: 0px;
	height: 0px;
	border: 6px solid #fff; //白色
	border-top-color: transparent;
	border-bottom-color: #fff;
	border-left-color: transparent;
	border-right-color: transparent;
}

向左三角形箭头

span::after{
	content: '';
	display: inline-block;
	width: 0px;
	height: 0px;
	border: 6px solid #fff; //白色
	border-top-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: #fff;
}

向右三角形箭头

span::after{
	content: '';
	display: inline-block;
	width: 0px;
	height: 0px;
	border: 6px solid #fff; //白色
	border-top-color: transparent;
	border-bottom-color: transparent;
	border-left-color: #fff;
	border-right-color: transparent;
}
以上是编程学习网小编为您介绍的“css代码画三角形箭头(上下左右)”的全面内容,想了解更多关于 前端知识 内容,请继续关注编程基础学习网。

本文标题为:css代码画三角形箭头(上下左右)

基础教程推荐