1.向下的三角形 css 箭头三角形

.down{
  display:inline-block;
  width:0px;
  height:0px;
  border-top:8px solid rgba(0, 0, 0, 0.65);
  border-left:8px solid transparent;
  border-right:8px solid transparent;
}

2.向上的三角形 css 箭头三角形

.up{
  display:inline-block;
  width:0px;
  height:0px;
  border-bottom:8px solid rgba(0, 0, 0, 0.65);
  border-left:8px solid transparent;
  border-right:8px solid transparent;
}

 

相关文章:

  • 2021-11-13
  • 2021-11-20
  • 2021-09-17
  • 2021-09-27
  • 2021-09-27
  • 2021-09-27
  • 2021-09-27
  • 2021-08-22
猜你喜欢
  • 2021-09-27
  • 2021-11-20
  • 2021-09-27
  • 2021-11-20
  • 2022-01-07
  • 2021-11-30
  • 2021-11-30
  • 2021-11-14
相关资源
相似解决方案