您现在的位置是:网站首页> 编程资料编程资料

用纯CSS3实现网页中常见的小箭头

2021-09-04 983人已围观

简介 这篇文章主要介绍了用纯CSS3实现网页中常见的小箭头的相关资料,需要的朋友可以参考下

用纯CSS3实现网页中常见的小箭头,实现代码如下所示:

 /* css3三角形(向上 ▲) */ div.arrow-up { width:0px; height:0px; border-left:5px solid transparent; /* 右透明 */ border-right:5px solid transparent; /*右透明 */ border-bottom:5px solid #2f2f2f; /* 定义底部颜色 */ font-size:0px; line-height:0px; } /* css3三角形(向下 

相关内容

-六神源码网