想实现一个这种效果的radio样式怎么弄?

自定义radio

只用html和css

<label class="radio-v2">
  <input type="radio" name="c">
  <span></span>自动弹出
</label>
<label class="radio-v2">
  <input type="radio" name="c">
  <span></span>不自动弹出
</label>
<label class="radio-v2">
  <input type="radio" name="c" disabled>
  <span></span>禁用
</label>
View Code

相关文章:

  • 2021-09-29
  • 2022-02-26
  • 2022-02-06
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2021-05-30
  • 2022-12-23
  • 2021-04-03
  • 2021-11-16
相关资源
相似解决方案