📌  相关文章
📜  如何在输入中放置一个圆圈 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:14.426000             🧑  作者: Mango

代码示例1
div {
  position: relative;
}
div:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparant;
  transform: translateY(-50%);
}
div.active:before {
  background: green;
}