码迷,mamicode.com
首页 > Web开发 > 详细

CSS画一个三角形

时间:2019-10-22 01:11:43      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:lang   content   com   width   doc   utf-8   style   html   ble   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .triangle{
            width: 0;
            height: 0;
            border-top: 50px solid black;
            border-right: 50px solid transparent;
            border-left: 50px solid transparent;
        }
    </style>
</head>
<body>
    <div class="triangle"></div>
</body>
</html>

CSS画一个三角形

标签:lang   content   com   width   doc   utf-8   style   html   ble   

原文地址:https://www.cnblogs.com/kzxiaotan/p/11717274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!