Css画画系列-----三角、对勾等

画对勾:
在这里插入图片描述

.container {
    width: 8px;
     height: 16px;
     border-color: rgba(117,200,43,1);
     border-style: solid;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
   }

三角:
在这里插入图片描述

.container {
    width:0;
    height:0;
    border-width:0 30px 30px;
    border-style:solid;
    border-color:transparent transparent red;/*透明 透明  灰
  }

猜你喜欢

转载自blog.csdn.net/Allan_L/article/details/84146708