实现一个黑色圆点, 🥇 1. 最基础的方式(div + border-radius) <div style=" width: 10px; height: 10px; background-color: black; border-radius: 50%; "></div> 🥈 2. 使用 ::before 或 ::after 伪元素 + content .dot::before { content: ''; display: inline-block; width: 10px; height: 10px; background: black; ...