CSS-三角形的div框框

<!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>
        .box {
            border: 100px solid thistle;
            width: 0px;
            height: 0px;
            border-top-color: transparent;
            border-left-color: transparent;
            border-right-color: transparent;
        }
    </style>
</head>
<body>
    <div class="box"></div>
</body>
</html>

在这里插入图片描述

发布了53 篇原创文章 · 获赞 13 · 访问量 2268

猜你喜欢

转载自blog.csdn.net/qq_36821220/article/details/103292104