欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CSS之三角形的制作

程序员文章站 2024-02-20 14:26:22
...
用边框把宽高撑开,其他边设置为透明色或者背景色即可,再用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>

CSS之三角形的制作

相关标签: Web前端CSS