CSS之三角形的制作

[亡魂溺海] 提交于 2020-01-30 00:45:01
用边框把宽高撑开,其他边设置为透明色或者背景色即可,再用position定位到任何地方去
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style type="text/css">
        .box{
            width: 0px;
            height: 0px;
            border-right: 100px solid transparent;
            border-left: 100px solid transparent;
            border-top: 100px solid transparent;
            border-bottom: 100px solid #000000;
        }
    </style>
</head>
<body>
<div class="box">

</div>
</body>
</html>

在这里插入图片描述

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!