美文网首页
css写三角形

css写三角形

作者: xilong | 来源:发表于2019-04-12 15:35 被阅读0次

主要方式是采用width 为0,设置border宽度解决

代码

.div1{
    position: relative;
    margin: 60px;
    width: 100px;height: 100px;background-color: #1e6abc;
}
.div1:after{
    display:block;
    content:'';
    border-width:4px 5px 4px 5px;
    border-style:solid;
    border-color: transparent #1e6abc transparent transparent;

    /* 定位 */
    position:absolute;
    left:-10px;
    top:10px;
}

相关文章

网友评论

      本文标题:css写三角形

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