单选框复选框修改背景图样式

html

<input type="radio" name="pay" value="1">
 <input type="radio" name="pay" value="2">

css

	//选中的
     input:checked {
            position: relative;
            &::before {
              content: '';
              width: 20px;
              height: 20px;
              position: absolute;
              left: -10px;
              top: -8px;
              background: url('../assets/images/xuanzhong.gif') no-repeat center center;
            }
          }
    
    //未选中的
      input {
        position: relative;
        &::before {
          content: '';
          width: 20px;
          height: 20px;
          position: absolute;
          left: -10px;
          top: -8px;
          background: url('../assets/images/weixuan.png') no-repeat center center;
        }
      }

猜你喜欢

转载自blog.csdn.net/weixin_43848576/article/details/88600225