<!DOCTYPE html>
<html>
<head>
    <title>Gear Shape</title>
    <style>
        .gear {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 10px solid gray;
            background-color: white;
            position: relative;
        }
<pre><code>    .gear:before {
        content: &quot;&quot;;
        position: absolute;
        width: 60px;
        height: 60px;
        background-color: gray;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    .gear:after {
        content: &quot;&quot;;
        position: absolute;
        width: 100px;
        height: 100px;
        background-color: white;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }
&lt;/style&gt;
</code></pre>
</head>
<body>
    <div class='gear'></div>
</body>
</html>

原文地址: https://www.cveoy.top/t/topic/pkSo 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录