修改input radio或checkbox默认图标

input[type=radio] {
  appearance: none;
  -moz-appearance: none;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  margin-left: auto;
  width: 36px;
  height: 36px;
  background: url("~@/images/ico_radio.png") no-repeat center;
  background-size: cover;
  vertical-align: middle;
  border-radius: 50%;
}
input[type=radio]:checked {
  background-image: url("~@/images/ico_radio_on.png");
}
  • 效果图:
posted @ 2021-04-15 11:56  Lanomw  阅读(394)  评论(0编辑  收藏  举报