A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

1351130709

初级黑马

  • 黑马币:22

  • 帖子:7

  • 精华:0

© 1351130709 初级黑马   /  2020-3-3 13:24  /  870 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

<!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>
        body {
            background-color: #ccc;
        }

        div {
            position: relative;
            width: 150px;
            height: 300px;
            background-color: #fff;
            border-left: 150px solid #000;
            margin: 100px auto;
            border-radius: 50%;
        }

        div::before {
            position: absolute;
            height: 30px;
            width: 30px;
            border: 60px solid #000;
            background-color: #fff;
            content: '';
            left: -75px;
            border-radius: 50%;
        }

        div::after {
            position: absolute;
            height: 30px;
            width: 30px;
            background-color: #000;
            border: 60px solid #fff;
            content: '';
            left: -75px;
            bottom: 0px;
            border-radius: 50%;
        }
    </style>
</head>

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

</html>

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马