黑马程序员技术交流社区

标题: 嗯嗯 [打印本页]

作者: 1351130709    时间: 2020-3-3 13:24
标题: 嗯嗯
<!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>




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2