其他分享
首页 > 其他分享> > 022实现淘宝下三角

022实现淘宝下三角

作者:互联网

代码:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>002实现淘宝下三角</title>
        <style type="text/css">
            div {
                width: 0px;
                height: 0px;
                /* background-color: #FF0000; */
                border: 50px solid black;
                border-top-color: transparent;
                border-right-color: transparent ;
                border-bottom-color:transparent ;
            }
        </style>
    </head>
    <body>
        <div></div>
    </body>
</html>

 

运行结果:

 

 

标签:color,022,三角,淘宝,0px,border,transparent
来源: https://www.cnblogs.com/LLL0617/p/15142497.html