目录

💙 使用 CSS 绘制图形

# 🌛 CSS 绘制月牙图形

<style>
  .center {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 25px 10px 0 0 yellow;
  }

</style>
<div class="center"></div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

from: 应用视觉设计:使用 CSS 创建一个图形 | freeCodeCamp.org (opens new window)

# ❤️ CSS 绘制心形

<style>
  .heart {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: pink;
    height: 50px;
    width: 50px;
    transform: rotate(-45deg);
  }
  .heart::after {
    background-color: pink;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0px;
    left: 25px;
  }
  .heart::before {
    content: '';
    background-color: pink;
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: -25px;
    left: 0px;
  }
</style>
<div class="heart"></div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

from:应用视觉设计:使用 CSS 和 HTML 创建更复杂的形状 | freeCodeCamp.org (opens new window)

📢 上次更新: 2022/09/02, 10:18:16