美文网首页
左上角的小三角

左上角的小三角

作者: Ben大师 | 来源:发表于2019-08-02 15:20 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>测试左上角小三角</title>
    <style>
        #div{
            height:100px;
            border:solid 1px #333;
            position: relative;
        }
        #div::before{
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width:0;
            height:0;
            border:8px solid rgba(0,0,0,0);
            border-left:8px solid red;
            border-top:8px solid red;
        }
    </style>
</head>
<body>
<div id="div"></div>
</body>
</html>

效果是这样的:


搜狗截图20190802151949.jpg

相关文章

网友评论

      本文标题:左上角的小三角

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