美文网首页
css3 画三角形

css3 画三角形

作者: WPeach | 来源:发表于2017-03-11 09:05 被阅读0次
<!DOCTYPE html>
<html>
    <head></head>
    <style type="text/css">
        #triangle{
            width: 0px;
            height: 0px;
            border-bottom: 140px solid  yellowgreen;
            border-left: 70px solid transparent;
            border-right: 70px solid transparent;
        }
    </style>
    <body>
        <div id="triangle"></div>
    </body>
</html>

效果图

三角形

相关文章

网友评论

      本文标题:css3 画三角形

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