美文网首页
CSS 绘制三角形

CSS 绘制三角形

作者: hao_developer | 来源:发表于2023-01-15 13:42 被阅读0次
    image.png
    .box {
      padding: 15px;
      background-color: #f5f6f9;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .triangle {
      display: inline-block;
      margin-right: 10px;
      /* Base Style */
      border: solid 10px transparent;
    }
    
    /*下*/
    .triangle.bottom {
      border-top-color: #0097a7;
    }
    
    /*上*/
    .triangle.top {
      border-bottom-color: #b2ebf2;
    }
    
    /*左*/
    .triangle.left {
      border-right-color: #00bcd4;
    }
    
    /*右*/
    .triangle.right {
      border-left-color: #009688;
    }
    

    相关文章

      网友评论

          本文标题:CSS 绘制三角形

          本文链接:https://www.haomeiwen.com/subject/naigcdtx.html